Seems fine here in IE 11. Is there any particular sequence of events I can duplicate to make the problem apparent?
One thing I would suggest though, where you have:
Code:
<li><a href="http://www.varisys.com/vs2007/Software.html" rel="SoftwareSubmenu"><b>Software</b></a></li>
and similar, lose the bold tags. Use css instead by making up a class (preferred):
Code:
<li><a class="bolded" href="http://www.varisys.com/vs2007/Software.html" rel="SoftwareSubmenu">Software</a></li>
while adding this to the stylesheet:
Code:
.bolded {font-weight: bold;}
Or try:
Code:
<li><b><a href="http://www.varisys.com/vs2007/Software.html" rel="SoftwareSubmenu">Software</a></b></li>
Bookmarks