My fly out menu hides behind an image on the web page.
HTML
/* menu */
/* common styling */
.menu {font-family: arial; font-size: 14px; width:200px; position:relative; margin: 5px;}
.menu ul li a, .menu ul li a:visited {display:block; text-decoration:none; color:#000;
width:170px; text-align:left; border:1px solid #000; border-width:1px 1px 1px 1px;
background:#FF9933; line-height:30px; font-size:14px; font-weight: bold; padding:5px;}
.menu ul {padding:0; margin:0;list-style-type: none;}
.menu ul li {float:right; margin-right:25px; position:relative;}
.menu ul li ul {display: none;}
/* specific to non IE browsers */
.menu ul li:hover a {color:#000; background:#CC3333;}
.menu ul li:hover ul {display:block; position:absolute; top:0; left:150px; width:150px;
z-index:1;}
.menu ul li:hover ul li a.hide {background:#33CC66 ; color:#000;}
.menu ul li:hover ul li a {display:block; background:#33CC66 ; color:#000; width:150px;
padding: 2px;}
.menu ul li:hover ul li:hover a.hide {width:150px; }
.menu ul li:hover ul li a:hover {background:#33CCCC; color:#000;}
.menu ul li:hover ul li ul {display:none; }
.menu ul li:hover ul li:hover ul {display:block; position:absolute; left:140px; top:0; color:#000;}
.menu ul li:hover ul li:hover ul li a {display:block; width:175px; background:#FF99CC; color:#000;}
</style>
CSS
#content {
width:1000px;
height:900px;
float: right; /* switch this to left and below to right to change the column locations */
border: thick solid #663300; /* remove this line to remove the border */
background-image: url(images/32a.jpg);
padding: 0;
font-size: 16px;
font-family: arial;
overflow:hidden;
}
.picture .large {
display:none;
}
.picture:hover .large {
display:block;
top: 200px;
right:50px;
border:none;
position:absolute;
z-index: 1;
}
Thanks