XF 1.2 Change Text Color on User Bar

Wolf1278

Member
I can't seem to find how to change the color of the text on the user bar:
2013-10-02_171904.png

so it looks more like so:
2013-10-02_172020.png
 
It is controlled by @primaryLighter.
Actually, to adjust the colors you would (in EXTRA.css) use
Code:
#moderatorBar a {
color: green;
}
where green is the color of the link (the Admin shortcut, the Reports, etc).
To adjust the Item Count (the number) you would use in EXTRA.css
Code:
#moderatorBar .itemCount {
color:red;
background:cyan;
}
where red is the text color you want and cyan is the background color.

That way you do not effect the other locations that primaryLighter is called at.
 
Back
Top Bottom