
January 21st, 2013, 11:34 AM
|
|
|
to get the menu to show over the other div, ...in your styles.css file, goto line 100
change
Code:
nav{
margin:0px;
padding:0px;
}
to
Code:
nav{
margin:0px;
padding:0px;
position:relative;
z-index:100;
}
then, to get the gap to close up, so, the submenu will work properly, goto line 59 in your styles.css file
and in your nav ul ul rule, remove the top:100%; property.
|