How to differentiate between multiple environments?
Changepoint 2022
You can display the registration information or the signed-in user name and registration information in the navigation menu bar by configuring the following settings in the Enterprise\Web.config file.
To enable the registration information to be displayed:
< add key="ShowRegistration" value="true" />
To display the name of the currently signed-in user and the registration information:
<add key="ShowNameWithRegistration" value="" />
To change the color of the bar, set the hexadecimal code for the color as the value for the following key:
< add key="TopBarColor" value="" />
To change the color of the text, set the hexadecimal code for the color as the value for the following key:
<add key="TopBarTextColor" value="" />
Changepoint 2020 and Changepoint 2021
In the Enterprise Web.config file, under <AppSettings>, specify the value for the TopBarColor key.
For example:
<add key="TopBarColor" value="red" />
Change the value for the "ShowRegistration" key to "true":
<add key="ShowRegistration" value="true" />
Changepoint 2017 and prior versions
You can modify the color of the top menu bar in Changepoint by editing the /CSS/Container.css file and modifying the background-color attribute of the .colorBar entry.
By default background-color attribute is #369 which is the blue color. Some possible options are:
- #ff0000 or red
- #00ff00 or green
- #ffff00 or yellow
The following example sets the color to red:
.colorBar {
background-color: red;
color: #fff;
float: left;
padding: 0 3px;
text-align: right;
vertical-align: middle;
width: 100%;
z-index: 100;
}