How would like to add a white (#FFFFFF) hover background to my top navigation links similar to the sidebar links hover feature. How would I do this?
My site:
http://tinyurl.com/682k3tc
How would like to add a white (#FFFFFF) hover background to my top navigation links similar to the sidebar links hover feature. How would I do this?
My site:
http://tinyurl.com/682k3tc
Hey,
This is a relatively easy CSS adjustment, add this to css/style1.css (personally I'd put it about line 140 immediately after .nav li a to keep things grouped):
.nav li a:hover {
background: #fff;
}
James
Awesome, that did the trick! Thanks.
I have one other question pertaining to the top navigation menu. How would I add a 3px width gif border image to appear to the right of every menu link including the "Home" link?
You must log in to post.