esthera
02-05-2007, 07:28 PM
I am using the following code to create a popout menu.
How can I get this to always show on top of what's on the page (in this case a flash image)
#catmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 130px; /* Width of Menu Items */
border-bottom: 1px solid #F8F3EE;
border-bottom-color: #F8F3EE;
color: #A75936;
}
#catmenu ul li{
position: relative;
}
/*Sub level menu items */
#catmenu ul li ul{
position: absolute;
width: 160px; /*sub menu width*/
top: 0;
visibility: hidden;
}
/* Sub level menu links style */
#catmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
text-decoration: none;
padding: 1px 5px;
background-color:#f8efe8;
color: #A75936;
}
#catmenu ul li a:visited{
color: #A75936;
}
#catmenu ul li a:hover{
background-color:#f8efe8;
background-position: left;
padding-left:20px;
}
How can I get this to always show on top of what's on the page (in this case a flash image)
#catmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 130px; /* Width of Menu Items */
border-bottom: 1px solid #F8F3EE;
border-bottom-color: #F8F3EE;
color: #A75936;
}
#catmenu ul li{
position: relative;
}
/*Sub level menu items */
#catmenu ul li ul{
position: absolute;
width: 160px; /*sub menu width*/
top: 0;
visibility: hidden;
}
/* Sub level menu links style */
#catmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
text-decoration: none;
padding: 1px 5px;
background-color:#f8efe8;
color: #A75936;
}
#catmenu ul li a:visited{
color: #A75936;
}
#catmenu ul li a:hover{
background-color:#f8efe8;
background-position: left;
padding-left:20px;
}