CSS for changing unread forum name colour

Zovator

Member
I can't seem to figure out the CSS to change my unread forum name color, this is what I have for the read forums:
Code:
.nodeList .level_2 .nodeTitle a { color: black; }
I need to change the unread forums name to a grey color, how would I do this?
 
I can't seem to figure out the CSS to change my unread forum name color, this is what I have for the read forums:
Code:
.nodeList .level_2 .nodeTitle a { color: black; }
I need to change the unread forums name to a grey color, how would I do this?

Try adding the following in extra.css template

Code:
.nodeList .level_2 .unread .nodeTitle a { color: black !important; }
 
Top Bottom