Thread: CSS nav bar
View Single Post
  #6 (permalink)  
Old Jan 24th, 2008, 03:17
Monie Monie is offline
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Re: CSS nav bar

Quote:
Originally Posted by unitedcraig View Post
2. Is there a way to change the colour of the text when hovered over, like i can do with the background?
Yes, you just have to set it in your hover style here:
HTML: Select all
#navigation li a:hover (line 82)
{
background-color: #f5f6ce;
color: #000; /*your hover text color is now black*/
text-decoration: none;
}
Reply With Quote