Hope you're comfortable editing css files and images :)
because when you mouse over it's not a flat color. They're using background images when you mouse over the menu item.
What do you wish to achieve?
For the top horizontal menu you could change the layout.css file on line 224. Where it reads
| Code: |
ul#nav a:hover
{
color: #ffffff;
background-repeat: repeat-x;
background-x-position: 0px;
background-y-position: 50%;
background-image: url(../images/buttonhover.png);
background-color: #3399cc;
}
|
change it to your preference eg.
| Code: |
ul#nav a:hover
{
color: #000000;
background-color: red;
}
|
<br><br>Post edited by: Bambi, at: 2007/12/11 08:19