Originally Posted by Northwind_Dagas
You need to use some classes to differentiate between the two types of links.
Give the two link types some names. In this example, I will use "primary" for 1,2,3 and "secondary" for A,B,C.
<HEAD> tag:
<style type="text/css">
a{text-decoration: none;}
a:hover{text-decoration: underline; color: #4040FF;}
a.primary:hover{text-decoration: color: #4040FF;}
a.secondary:hover{text-decoration: color: #FF0000;}
</style>
Then, in your link codes:
<a href="link1.html" class="primary">Link 1</a>
<a href="link2.html" class="primary">Link 2</a>
<a href="link3.html" class="primary">Link 3</a>
<a href="linka.html" class="secondary">Link A</a>
<a href="linkb.html" class="secodnary">Link B</a>
<a href="linkc.html" class="secondary">Link C</a>
Remember that classes are case sensitive so if you use caps in the head, use them in the links as well. Good luck!