Two Hyperlink Types

I have been to sites where there is two different types of links, on the same page such as...

1. White links and orange when hovered over and bold
2. Yellow links and black when hovered over non bold

How do I create something like this?Hover pseudo-classes on anchors. (a:hover {...})In your css you can put something like this :

.white a:link {color: white; font-weight: bold;}
.white a:hover {color: orange}
.yellow a:link {color: yellow;}
.yellow a:hover {color: black;}

and then in the html...

<div class="yellow"><a href=http://www.webdeveloper.com/forum/archive/index.php/"">This is yellow.</a></div>
etc...

That's the general idea anyway.
 
Back
Top