Although this question has been previously asked, I am still unable to make it work with the solutions provided;
The website in question is
I have tried changing the z-index on all menu items to 99999, but they are still appearing below.
<div id="slidercont">
<div id="slider">
<img src="http://digitalstr.com/wp-content/uploads/2011/09/ibfconpromo.png" />
<img src="http://digitalstr.com/wp-content/uploads/2011/09/irconspacepromo.png" />
</div>
#access {
background: #3b95bd; /* Solid color for older browsers */
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
width: 100%;
z-index: 99999;
}
.menu {
margin-top: -20px !important;
z-index: 99999;
}
#access ul {
font-size: 13px;
list-style: none;
margin: 0 0 0 -0.8125em;
padding-left: 0;
z-index: 99999;
}
#access li {
float: left;
position: relative;
z-index: 99999;
}
#access a {
color: #eee;
display: block;
line-height: 3.333em;
padding: 0 1.2125em;
text-decoration: none;
z-index: 99999;
}
#access ul ul {
-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
display: none;
float: left;
margin: 0;
position: absolute;
top: 3.333em;
left: 0;
width: 140px;
z-index: 99999;
}
#access ul ul ul {
left: 100%;
top: 0;
z-index: 99999;
}
#access ul ul a {
background: #f9f9f9;
border-bottom: 1px dotted #ddd;
color: #444;
font-size: 13px;
font-weight: normal;
height: auto;
line-height: 1.4em;
padding: 10px 10px;
width: 120px;
z-index: 99999;
}