These are the CSS classes that make the hover work. Notice that the IE hovers are implemented by appending another class using /* no need to change these hover classes
unless you need more than 4 levels */
#nav li:hover ul ul,
#nav li:hover ul ul ul,
#nav li:hover ul ul ul ul,
#nav li.iehover ul ul,
#nav li.iehover ul ul ul,
#nav li.iehover ul ul ul ul{
left: -999em;
} #nav li:hover ul,
#nav li.iehover ul {
top: 1.6em;
left:0;
}
#nav li li:hover ul,
#nav li li li:hover ul,
#nav li li.iehover ul,
#nav li li li.iehover ul {
top: 0;
left:12.8em; } Also new is the ability to turn off the onmouseover events by setting AddMouseOver="false" in the menu properties, but this defaults to true and only adds them for IE. If you look in the page source it will look like this when they are there: onmouseover="this.className+=' iehover ';" onmouseout="this.className=this.className.replace(' iehover ', ''); |