Kaiser
Well-known member
If you visit my forum http://adminbb.info/index.php you will see the top links to login & signup are hard to see because of the color, can someone guide me on exactly what to do to change the color of the links to white?
#loginBar #loginBarHandle {
color: #101010;
font-size: 11px;
line-height: 20px;
text-align: center;
}
That is controlled with this CSS in the login_bar.css template:
HTML:#loginBar #loginBarHandle { color: #101010; font-size: 11px; line-height: 20px; text-align: center; }
Change color: #101010; to something lighter, e.g. color: #FFFFFF;
#loginBar #loginBarHandle
{
position: absolute;
right: 0px;
bottom: -20px;
text-align: center;
z-index: 1;
padding: 0 10px;
font-size: 11px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
margin-right: 20px;
line-height: 20px;
background-color: @primaryDarker;
box-shadow: 0px 2px 5px @primaryDarker;
color: @primaryLightest;
}
Am I looking at different code? My default login_bar.css template has this:
Admin CP -> Appearance -> Templates -> login_bar.css
Code:#loginBar #loginBarHandle { position: absolute; right: 0px; bottom: -20px; text-align: center; z-index: 1; padding: 0 10px; font-size: 11px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; margin-right: 20px; line-height: 20px; background-color: @primaryDarker; box-shadow: 0px 2px 5px @primaryDarker; color: @primaryLightest; }
You can see by default it uses this palette color:
Admin CP -> Appearance -> Style Properties -> Color Palette -> @primaryLightest
My mistake Jake.Am I looking at different code? My default login_bar.css template has this:
We use essential cookies to make this site work, and optional cookies to enhance your experience.