XF 1.4 How to change link color on forum titles, etc?

Amin Sabet

Well-known member
I am new to Xenforo. My members are asking for a dark style. I've been playing with the Color Palette but can't figure out how to lighten the color for the forum titles and other links shown here, eg "Site Software Change", "Canon DSLR Forum", "Canon EOS M Forum".

Separate question: Why is the text of the highlighted tab ("Forums") so blurry?

Screen Shot 2015-02-17 at 12.02.25 PM.webp
 
Last edited:
For the node title, add to EXTRA.css:
Code:
.nodeTitle a
{
    color: orange;
}

Or to change all primary content links:
Code:
.primaryContent a
{
    color: red;
}

The tab text is blurred due to text shadow - you can remove or change that.
 
Top Bottom