My website features a simple JavaScript and CSS hover menu that works flawlessly in most cases, with one notable exception - an issue with the z-index on IE8.
.rolloverMenu {
background-color: #4A5508;
border-bottom: 1px solid #AC4718;
border-left: 1px solid #AC4718;
border-right: 1px solid #AC4718;
box-shadow: 2px 2px 2px #AC4718;
float: left;
margin-left: -15px;
margin-top: -12px;
padding: 10px 10px 6px;
position: absolute;
width: 200px;
z-index: 1000;
}
The menu ends up behind my content instead of staying above it as intended. I'm aware of the different stacking rules in IE, so I'm open to any suggestions or solutions for this problem.
(I've also attempted setting it to z-index:9999;
)