hi HTMLers,
As you can see below, I have a class called "footer" in my css. I want these links to be a different color than other links on my site.
The css makes all links the color white...
A:link {color:white;text-decoration:underline}
A:visited {color:white;text-decoration:underline}
A:active {color:red;text-decoration:underline}
But I want the links in "footer" to be red.
***What do I need to do in "footer" within the css to override white and make just these links red ? (I dont want to use the style=color technique, there are too many pages).***
Thanks! John
<td class = "footer"><a href="index.html">Services We Offer</a> | <a href="qualifications.htm">Qualifications</a> | <a href="clients.htm">Some of Our Clients</a> | <a href="about.htm">About Lone Star</a> | <a href="contact.htm">Contact Us</a></td>
As you can see below, I have a class called "footer" in my css. I want these links to be a different color than other links on my site.
The css makes all links the color white...
A:link {color:white;text-decoration:underline}
A:visited {color:white;text-decoration:underline}
A:active {color:red;text-decoration:underline}
But I want the links in "footer" to be red.
***What do I need to do in "footer" within the css to override white and make just these links red ? (I dont want to use the style=color technique, there are too many pages).***
Thanks! John
<td class = "footer"><a href="index.html">Services We Offer</a> | <a href="qualifications.htm">Qualifications</a> | <a href="clients.htm">Some of Our Clients</a> | <a href="about.htm">About Lone Star</a> | <a href="contact.htm">Contact Us</a></td>