I have used an ASP .Net Menu Control ,It is working fine in Mozzila but in IE-8 , the Submenu are not displaying instead a white box appears havinfg the dimensions same as if the submenu items are present and when I take mouse over that box it dissapears.

Recommended Answers

All 6 Replies

I am having the same problem. Did you fix? If I find sol I be back.

Setting the z-index property (HTML) using CSS can address this problem. The CSS class would look something like this:

.adjustedZIndex {
    z-index: 1;
}

And the Menu should look like as below

<asp:Menu ID="Menu1" runat="server">
    <DynamicMenuStyle CssClass="adjustedZIndex" />
</asp:Menu>

The z-index has to be something higher.

Some fixes have been in the following links. Try them.

ASP.NET Menu and IE8 rendering white issue
Ie8 doesn't seem to like the ASP.Net Menu control
asp:Menu in IE8
asp:menu fix for IE8 problem available

commented: This answered my question +0

thanks, this works.

Hi cjsteury,

Please mark this thread as answered if your question is answered.

Regards
Ramesh. S

yo! thanks man, it works on mine aswell

<DynamicMenuStyle CssClass="adjustedZIndex" />

This is still not working but other browsers support. I used the above solution but no use........

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.