Zovator Member Oct 22, 2012 #1 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?
Shelley Well-known member Oct 22, 2012 #3 Zovator said: 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? Click to expand... Try adding the following in extra.css template Code: .nodeList .level_2 .unread .nodeTitle a { color: black !important; } Upvote 0 Downvote
Zovator said: 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? Click to expand... Try adding the following in extra.css template Code: .nodeList .level_2 .unread .nodeTitle a { color: black !important; }
Zovator Member Oct 22, 2012 #4 Shelley said: Try adding the following in extra.css template Code: .nodeList .level_2 .unread .nodeTitle a { color: black !important; } Click to expand... Worked, thanks Upvote 0 Downvote
Shelley said: Try adding the following in extra.css template Code: .nodeList .level_2 .unread .nodeTitle a { color: black !important; } Click to expand... Worked, thanks