CSS dropdown not appearing

at my site at www.meadowlarkco.com/indexnewsite_test7.htm my dropdown menu beneath contact us appears fine on every page except the locations page at www.meadowlarkco.com/locations.php...could someone tell me what needs to be changed so the dropdown appears?

thanks

Do you mean the “ContactUs” dropdown? I’m using Chrome14/Win7, and it seems to work fine.

yes, I’m using Vista/Firefox 7 and I see a dropdown.

Add the following to bring the menu on top in IE7.


.menu{
position:relative;
z-index:99;
}

In IE7 and under its ultimately the positioned parent that dictates the stacking level so always go to the parent and make sure that is higher than the elements below.