Tutorials - Link Color Change
A lot of you have asked for this, how to make a link change color, well here it is. It only works in Explorer 4+, other browsers will read the BODY tag specs. Netscape 6 will also read them.
Copy this and add it to your HEAD.
<style>
<!--.nu {text-decoration: none; font-family: arial;}
A:link {text-decoration: none; color: orange}
A:visited {text-decoration: none; color: orange}
A:hover {text-decoration: underline; color: white}
-->
</style>
Now, just change code to suit your needs.
Where it says A:hover, this is what will happen when the mouse is over the link, it will underline and turn white. Have fun!