Footer Links Colour

Davyc

Well-known member
Here's my little problem - the colour of the links in the text just below the footer proper (that's the colour of the Xenforo copyright and the colour of the Terms and Rules links) are blending with the background colour I've chosen to use. I've sorted the copyright colour and changed it to white and I would like to do the same with the Terms and Rules.

I did get it the way I wanted by changing the link colour in the templates but that made the discussion titles disappear as they became the same colour as the background lol. I've tried using the colour options in the styles but they seem to be over-ridden by the links colour.

Any help would be greatly appreciated.
 
Add this to EXTRA.css:

Code:
/* Change colour of the copyright text */
#copyright {
color: @dimmedTextColor !important;
}

/* Change colour of Terms and Rules */
#legal a:link, #legal a:visited {
color: @dimmedTextColor !important;
}

Change the colour to suit.
 
Top Bottom