If you want to change the "default" background color of the submenu, you can open ddlevelsmen-base.css, and change highlighted:
Code:
.ddsubmenustyle li a{
display: block;
width: 160px; /*width of menu (not including side paddings)*/
color: black;
background-color: lightyellow;
text-decoration: none;
padding: 4px 5px;
border-bottom: 1px solid black;
}
...if you're wanting to change the "black on white" combination on hover, you can change highlighted:
Code:
.ddsubmenustyle li a:hover{
background-color: black;
color: white;
}
to:
Code:
.ddsubmenustyle li a:hover{
background-color: #00f;
color: white;
}
...or anything that meets your heart's desire.
Hope that helps.
Bookmarks