Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS drop down menu colours on mouseover Re: drop down menu colours on mouseover

#55629
mwarren
Member

if you’re using jquery, then in the statement where you add the hover state to your sub menu, just also add it to the top level as well.

Example:
$(top level).hover(function(){

$(sub).show();
$(top level).css( blah blah);

});