Code:
#ddcolortabs a{
float:left;
color: white;
background: #678b3f url(media/color_tabs_left.gif) no-repeat left top;
margin:0 2px 0 0;
padding:0 0 1px 3px;
text-decoration:none;
letter-spacing: 1px;
}
#ddcolortabs a:hover{
background-color: #8cb85c;
}
#ddcolortabs a:hover span{
background-color: #8cb85c;
}
#ddcolortabs #current a, #ddcolortabs #current span{ /*currently selected tab*/
background-color: #8cb85c;
}
The above mentioned are the styles that does the color manipulation for the DD Color Tabs of Horizontal CSS Menus.
In #ddcolortabs a style you can replace the color code with whatever background color you want.
#ddcolortabs a:hover and #ddcolortabs a:hover span you can change to have a new hover color - (In other words whenever you move your moue over the menu what color you want to have you can specify there)
If you want to change the currently selected color then change the background color specified in #ddcolortabs #current a, #ddcolortabs #current span style.
I think that will give you the the result you are looking for.
Bookmarks