Hi,
Does anyone how to fix this drop down menu bug in older version of IE. Here is the link to see,
http://lauthiamkok.net/works/design/web/hillcrest_2010/
All browsers work fine and IE 8 but not IE 6 or IE 7…
Here is the HTML,
<div id="menu-header">
<ul class="menu-parent">
<li id="menu-home"><a href="#"><span>Home</span></a></li>
<li id="menu-about-us"><a href="#" class="current"><span>About us</span></a>
<ul id="submenu-about-us" class="submenu">
<li id="menu-history"><a href="#"><span>History</span></a></li>
<li id="menu-objectives"><a href="#"><span>Objectives</span></a></li>
<li id="menu-properties"><a href="#"><span>Properties</span></a></li>
<li id="menu-personnel"><a href="#"><span>Personnel</span></a></li>
<li id="menu-referees"><a href="#"><span>Referees</span></a></li>
<li id="menu-fees"><a href="#"><span>Fees</span></a></li>
</ul>
</li>
<li id="menu-residential-services"><a href="#"><span>Residential Services</span></a>
<ul id="submenu-residential-services" class="submenu">
<li id="menu-budgets"><a href="#"><span>Budgets</span></a></li>
<li id="menu-insurance"><a href="#"><span>Insurance</span></a></li>
<li id="menu-maintenance"><a href="#"><span>Maintenance</span></a></li>
<li id="menu-other-services"><a href="#"><span>Other Services</span></a></li>
</ul>
<!---->
</li>
<li id="menu-right-to-manage"><a href="#"><span>Right to Manage</span></a></li>
<li id="menu-property-developers"><a href="#"><span>Property Developers/Landloards</span></a></li>
<li id="menu-the-team"><a href="#"><span>The Team</span></a></li>
<li id="menu-faq"><a href="#"><span>FAQ</span></a></li>
<li id="menu-useful-links"><a href="#"><span>Useful Links</span></a></li>
</ul>
</div>
<!--menu_header-->
CSS,
/*menu header style*/
#menu-header {
margin:0px 0px -5px 0px;
background:#ffffff;
}
#menu-header ul{
clear:both;
}
.menu-parent {
width:100%;
height:35px;
background:#30302e;
}
.menu-parent > li > a {
float:left;
height:30px;
color:#ffffff;
text-decoration:none;
}
.menu-parent > li > a:hover {
text-decoration:none;
}
.submenu {
display:none;/**/
position:absolute;
margin:31px 0px 0px 0px;
background:#30302e;
width:915px;
overflow:hidden;
}
.submenu > li > a {
/*display:none;*/
float:left;
height:24px;
color:#ffffff;
text-decoration:none;
}
#menu-header span {
visibility:hidden;
}
Many thanks,
Lau