My dropdown menu gets invisible behind a (rotating) layer. The dropdown is a jquery superfish horizontal menu. I have tried to give the dropdown a high z-index and the layer a very low, but still, it wont work. Here is the css for the layer:
.glidecontent{
font-family:Geneva, Arial, Helvetica, sans-serif;font-size:12px;font-weight:normal;
position: absolute; /* Do not change this value */
background: white;
padding: 10px;
visibility: hidden;
width: 500px;
z-index:-1;
}
And here is the dropdown:
.sf-menu, .sf-menu * {
margin: 0;
padding: 0;
list-style: none;
z-index: 10000000000;
}
How to solve this...?