Go to ddsmoothmenu.css.
If you read the code, it was well explained.
If you would like to change the background of the top level menu, it's this part:
Code:
/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
background: #414141; /*background of menu items (default state)*/
color: white;
padding: 8px 10px;
border-right: 1px solid #778;
color: #2d2b2b;
text-decoration: none;
}
...you can change highlighted to any color of your desire.
If you intend to replace it with an image, do it like this:
Code:
background: #414141 url('bg.gif');; /*background of menu items (default state)*/
For the hover state background, it's this part:
Code:
.ddsmoothmenu ul li a:hover{
background: black; /*background of menu items during onmouseover (hover state)*/
color: white;
}
Hope that helps.
Bookmarks