Changing "Terms and Rules" link color

Trombones13

Well-known member
I cannot figure out for the life of me how to change the "Terms and Rules" link that's at the bottom-right of the forum without changing the other links that are set with a visited, such as the Page and Redirect category links (when I tried editing in Firebug). What can I edit to make the link match my @secondaryDarker color instead of the standard link color? Thanks!
 
Admin CP -> Appearance -> Templates -> footer.css

Add this code to the bottom of the template:

Code:
		#legal a,
		#legal a:visited
		{
			color: @secondaryDarker;
		}

Or add it to EXTRA.css if you want to keep all custom CSS in one location.
 
Top Bottom