ok, I upgraded to IE7, I then found my cargo cult menu's no longer worked, it was about time I changed this code anyway so opted to go for a pure CSS option. ditching the JS which was a load of rubbish I'd half hinched anyway!
However, I am having trouble getting the CSS ul/li drop downs to line up.
In IE7 as well as IE6 they appear half way in the middle of the menu ....
however in FireFox they look fine ....
If I apply margin-left:-50%; in IE they are fine but in FF they then shift 50% to the left.
why is this happening and how can i fix it...
here is the CSS
thanks 1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
However, I am having trouble getting the CSS ul/li drop downs to line up.
In IE7 as well as IE6 they appear half way in the middle of the menu ....
however in FireFox they look fine ....
If I apply margin-left:-50%; in IE they are fine but in FF they then shift 50% to the left.
why is this happening and how can i fix it...
here is the CSS
Code:
/* CSS Menus - Horizontal CSS Menu with Dropdown and Popout Menus - 20050131 */
*{margin:0;padding:0;border:none;}
body{margin:0.5em;font-family:verdana,tahoma,arial,sans-serif;}
/* Begin CSS Popout Menu */
#menu{
width:100%;
float:left;
}
#menu a, #menu h2{
font:bold 11px/16px arial,helvetica,sans-serif;
display:block;
border-width:1px;
border-style:solid;
border-color:#ccc #888 #555 #bbb;
white-space:nowrap;
margin:0;
padding:1px 0 1px 3px;
}
#menu h2{
color:#fff;
background:#000 url(/images/expand3.gif) no-repeat 100% 100%;
text-transform:uppercase
}
#menu a{
background:#eee;
text-decoration:none;
}
#menu a, #menu a:visited{
color:#000;
}
#menu a:hover{
color:#f00;
background:#ddd;
}
#menu a:active{
color:#060;
background:#ccc;
}
#menu ul{
list-style:none;
margin:0;
padding:0;
float:left;
width:195px;
}
#menu li{
position:relative;
}
#menu ul ul{
position:absolute;
z-index:500;
top:auto;
display:none;
}
#menu ul ul ul{
top:0;
left:100%;
}
/* Begin non-anchor hover selectors */
/* Enter the more specific element (div) selector
on non-anchor hovers for IE5.x to comply with the
older version of csshover.htc - V1.21.041022. It
improves IE's performance speed to use the older
file and this method */
div#menu h2:hover{
background:#000 url(/images/expand3.gif) no-repeat -999px -9999px;
}
div#menu li:hover{
cursor:pointer;
z-index:100;
}
div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;}
div#menu li:hover ul,
div#menu li li:hover ul,
div#menu li li li:hover ul,
div#menu li li li li:hover ul
{
display:block;
}
/* End of non-anchor hover selectors */
/* Styling for Expand */
#menu a.x, #menu a.x:visited{
font-weight:bold;
color:#000;
background:#eee url(/images/expand3.gif) no-repeat 100% 100%;
}
#menu a.x:hover{
color:#a00;
background:#ddd;
}
#menu a.x:active{
color:#060;
background:#ccc;
}
/* End CSS Popout Menu */
thanks 1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.