Hi
I have made a vertical menu with submenus that flyout. It works fine in Firefox but does not work in IE. I have added the csshover.htc file to no avail. I have made an error somewhere but cannot see where. Can someon please help.
url: http://marcks.110mb.com
#leftnav {
width: 150px;
background: #d7f6d7;
}
#leftnav ul {
list-style: none;
margin: 0;
padding: 0;
}
#leftnav a {
font: .8em/1.35 "Trebuchet MS", Helvetica, sans-serif;
display: block;
border-bottom: 1px dotted #000;
margin: 0;
padding: 2px 3px;
color: #060;
background: #d7f6d7;
text-decoration: none;
}
#leftnav a:hover {
color: #090;
background: #d7f6d7;
}
#leftnav ul ul {
position: absolute;
top: 0;
left: 0;
}
#leftnav li {
position: relative;
}
#leftnav ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
}
div#leftnav ul ul {
display: none;
}
div#leftnav ul li:hover ul {
display: block;
}