http://72.249.175.3/~chemnut
The dropdown menus go behind the images in IE 8. Please help!
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;
}
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.
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;
}