Can someone tell me why firefox is line wrapping the menu as if I had applied clear:left; to the elements?
here is a screen shot (i actually hovered over MAY!)
Also the menu doesn't even popout in Opera, why is this?
CSS...
HTML..
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
here is a screen shot (i actually hovered over MAY!)
Also the menu doesn't even popout in Opera, why is this?
CSS...
Code:
/* CSS Menus - Vertical CSS with Popout Menus - */
*{
margin:0;
padding:0;
border:none;
}
body{
font-family:arial,verdana,tahoma,sans-serif;
font-size: 12pt;
}
/* Begin CSS Popout Menu */
ul#navmenu,
ul#navmenu li,
ul#navmenu ul {
list-style: none;
margin: 0 auto;
text-align:center;
}
ul#navmenu {
width: 100px;
}
ul#navmenu ul {
width: 80px;
left:50px;
}
ul#navmenu ul ul {
width: 200px;
left:40px;
}
ul#navmenu li {
display: inline; /*For IE*/
position: relative;
}
/* Root Menu */
ul#navmenu a {
font:bold 11px/16px arial,helvetica,sans-serif;
display:block;
border-width:1px;
border-style:solid;
border-color:#cccccc #888888 #555555 #bbbbbb;
padding:1px 0 1px 3px;
text-align:center;
background:#eeeeee;
text-decoration:none;
height: 1%; /*For IE*/
}
#navmenu a, #navmenu a:visited{
color:#000000;
}
#navmenu a:hover{
color:#ff0000;
background:#dddddd;
}
#navmenu a:active{
color:#000066;
background:#cccccc;
}
#navmenu a.x, #navmenu a.x:visited{
font-weight:bold;
color:#000000;
background:#eeeeee url('/images/expand3.gif') no-repeat;
}
#navmenu a.x:hover{
color:#ff0000;
background:#dddddd;
}
#navmenu a.x:active{
color:#000066;
background:#cccccc;
}
ul#navmenu ul,
ul#navmenu ul ul,
ul#navmenu ul ul ul {
display: none;
float:left;
position:absolute;
}
/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu li:hover ul ul,
ul#navmenu li:hover ul ul ul,
ul#navmenu li.iehover ul ul,
ul#navmenu li.iehover ul ul ul {
display: none;
}
ul#navmenu li:hover ul,
ul#navmenu ul li:hover ul,
ul#navmenu ul ul li:hover ul,
ul#navmenu li.iehover ul,
ul#navmenu ul li.iehover ul,
ul#navmenu ul ul li.iehover ul {
display: block;
}
HTML..
Code:
<table width="100%" class="menu">
<tr>
<td valign="middle">
<ul style="z-index:990;" id="navmenu">
<!--tmpl_loop name="month"-->
<li style="z-index:990;"><a href="#" class="x" ><!--tmpl_var name='month'--></a>
<ul style="z-index:995;"><!--tmpl_loop name="year"-->
<li style="z-index:995;"><a href="#" class="x"><!--tmpl_var name='year'--></a>
<ul style="z-index:999;"><!--tmpl_loop name="stat"-->
<li style="z-index:999;"><a href="#" onclick="pwait(); getAjax('<tmpl_var name='url_to_cgi'>/commissions.cgi','FA=VW&requireduser=<tmpl_var name='user'>&DOC=<tmpl_var name='docid'>','<tmpl_var name='period'>')">Period Ending <!--tmpl_var name='period'--></a></li>
<!--/tmpl_loop-->
</ul>
</li>
<!--/tmpl_loop-->
</ul>
</li>
<!--/tmpl_loop-->
</ul>
</td>
</tr>
</table>
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.