So I've found some nice online css menu generators, and they seem to
work great, but I'm having a problem. The multi-level won't drop down
over flash files. Is there someway I can fix this, like maybe
adjusting the CSS code? I'm using a multi-level horizontal menu. Code
is below. Thanks for any help.
/////////////////////////
#nav, #nav ul{
margin:0;
padding:0;
list-style-type:none;
list-style-position:outside;
position: relative;
line-height:2em;
font-family : arial, Times New Roman, sans-serif;
font-size: 12px;
}
#nav a{
display:block;
padding:0px 5px;
border-right:1px solid #fff;
color:#fff;
text-decoration:none;
background : #000000;
/* font-size: 14px; */
font-size: 12px;
}
#nav a:hover{
background : #006699;
color:#fff;
}
#nav li{
float:left;
position:relative;
}
#nav ul {
position:absolute;
display:none;
width:9em;
top:2em;
}
#nav li ul a{
width:9em;
height:auto;
float:left;
}
#nav ul ul{
top:auto;
}
#nav li ul ul {
left:17em;
margin:0px 0 0 10px;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul
ul{
display:none;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li
li li li:hover ul{
display:block;
}
.nnav {
float:left;
}
--~--~---------~--~----~------------~-------~--~----~
--
You received this because you are subscribed to the "Design the Web with CSS"
at Google groups.
To post: [email protected]
To unsubscribe: [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---