Quote:
Originally Posted by unitedcraig
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;
}