The footer of my (wordpress)website has the links for the privacy policy and T&Cs. On the rest of the site all links are blue. I would like to override the natural blue color of the hyperlinks and make them white instead:
/* Links--------------------------------------------- */
a {
color: #2557AA;
text-decoration: none;
}
I have a class in the footer called colophon. This is defined as a class to get special formatting. I want the link to appear white. I wrote the following to override the css for the hyperlink so that in the footer it would be white:
/* Footer--------------------------------------------- */
#colophon p {
line-height: 1.5;
color: #FFF;
}
#colophon a {
color: #FFF;
text-decoration: none;
}
Footer.php
<footer id="colophon" >
<p align="left"> All rights reserved.
</p>
<a href="http://example.com/TC">Terms of Use</a> |
<a href="http://example.com/Privacy">Privacy Policy</a>
</footer><!-- end colophon -->