how to change font-color in footer ?

erich37

Well-known member
I would like to change the text-color for the wording "Copyright" and all the wording which is in the block where we have the "Terms and Rules"-text in the footer.

I have tried in ACP, but the color-changes in ACP only apply to the footer-area which is showing the "Contact Us" text.


Many thanks!
 
Add to EXTRA.css:

Code:
#copyright {
color: @dimmedTextColor !important;
}
 
#legal a:link,
#legal a:visited {
color: @dimmedTextColor !important;
}
 
Top Bottom