XF 2.0 How do I change a specific link color?

DM426

Member
I know how to change link color globally, but I want to change the link color on a specific template.

What I want to do is change the color of the user name which appears right under the title of a thread in the thread list. Can't seem to figure out what code I need for that.

Can I do that in the extra template, or is there another template I need to modify? Thanks.
 
Here's another question. Trying to change the color of the forum titles without changing the color of all the links.

Added this to extra.css but it didn't work. Where am I going wrong?

Code:
.node .nodeTitle a,
.node .nodeTitle a:visited
{
    color: #000000;
}
 
Top Bottom