link hover questions

A

Anonymous

Guest
okay on my site i have a navigation menu. now withthat menu when you hover over the links they change to caps, and this is want i want. i have this coded in a css file. now my question is how can i keep the navigation hover changing to caps but have all the other links on the page not change to caps?

this mite be a little confusing so here is my site so u can understand better. http://ps2manuals.com/main_site.php
 
put a containing div or span around you navigation menu and set an id to it

<span id="nav"></span>

in you css you can tell just the <a> elements within the nav to have the caps hover.

#nav a:hover {
}

hope that helps
 
Back
Top