Do you mean the sub menus don't appear if JS is disabled? If so, remove this line in the .css file:
Code:
.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: white;
width: 200px;
visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}
and inside the .js file, add the below to the very end to dynamically generate the removed CSS code:
Code:
document.write('<style type="text/css">\n\n')
document.write('.dropmenudiv{visibility: hidden;}')
document.write('</style>')
Bookmarks