Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Dropdown Menu Not Working in IE 8 WordPress

  • SOLVED

http://72.249.175.3/~chemnut

The dropdown menus go behind the images in IE 8. Please help!

Answers (3)

2012-06-27

Romel Apuya answers:

set the css z-index of mainmenu to 999

#mainmenu{
z-index:9999;
}


Romel Apuya comments:

#mainmenu{
z-index:9999;
position: relative;
}

2012-06-27

Daniel Yoen answers:

jqueryslidemenu.css line 1:

#myslidemenu {
float: right;
margin-top: 12px;
}

replace with :

#myslidemenu {
float: right;
margin-top: 12px;
position:relative;
z-index:30;
}


style.css: line 547

#slide-wrapper {
padding: 0;
margin: 0 auto;
width: 960px;
height: 344px;
border-top: 4px solid #61AB00;
border-bottom: 2px solid #61AB00;
}

replace with :

#slide-wrapper {
padding: 0;
margin: 0 auto;
width: 960px;
height: 344px;
border-top: 4px solid #61AB00;
border-bottom: 2px solid #61AB00;
z-index:1;
}

hope this help :)


Anne Shenton comments:

This partially worked, but when I hover over the menu, I can only hover over the first option before the menu disappears.

2012-06-28

Francisco Javier Carazo Gil answers:

Firstly, look at your timthumb.php, your web gives lots of bad request errors (look at console).

Secondly try to do this also:

.sub-menu{z-index:9999;
position: relative;
}