Log in

View Full Version : drop down menu problem



dustnbones
11-06-2010, 09:23 PM
I'm having a problem with menu jQuery Multi Level CSS Menu #2

The dropdown list appears behind the image below it. Any ideas on how to make it display over the image please? Link below shows my problem.
Thanks for any help.

http://www.alltreeandgardenservices.co.uk/mac

molendijk
11-06-2010, 10:35 PM
In jqueryslidemenu.css you have:

.jqueryslidemenu{
font: bold 12px Verdana;
background: #414141;
width: 100%;
}
Replace that with:

.jqueryslidemenu{
position:relative;
z-index:1000;
font: bold 12px Verdana;
background: #414141;
width: 100%;
}
===
Arie Molendijk.

dustnbones
11-06-2010, 11:54 PM
molendijk.Thanks very much. All sorted now.:)