Quote Originally Posted by lina0962 View Post
Fasttrading:

I put the code there. No luck......

I saw some other people's websites. They put the font color of the first level as white, and it change to some other color when they hover over level 2 or 3. How do they achive that?
Ok, i have it for you. This first one sets the colour for background on the top horizontal menu:

div#dropMenu li:hover {
display: block;
background-color: #ff0000;
}

This one sets the colour of the text on the top level horizontal:

div#dropMenu ul.level1 a:hover {
color: #ffffff;
}

And this one sets the text colour of the drop down:

div#dropMenu ul.level2 a:hover {
color: #000000;
}

Adjust colours to suit.