How to get rid of ugly asp:Menu flickering?

If anyone still needs a solution; the flickering is there because you should set the correct display style in your css for the menu Try for example menu ul li ul { display: none; } and menu ul li { position: relative; float: left; list-style: none; } The flickering is because the ASP. NET 4 menu uses javascript to set some inline styles.

If anyone still needs a solution; the flickering is there because you should set the correct display style in your css for the menu. Try for example #menu ul li ul { display: none; } and #menu ul li { position: relative; float: left; list-style: none; } The flickering is because the ASP. NET 4 menu uses javascript to set some inline styles.

YES! I still needed a solution. But now I have one, thanks to you!

I have only added the display:none in #menu ul li ul and the flickering disappeared. Just quickly tested at the live server with IE 7+8, Firefox, Chrome and Opera (they all showed this menu flickering) and it's working smoothly now. Thank you again, this was really a great help!

– Slauma Aug 9 '10 at 18:04.

The above solution was close, but did not work for me. It required the slight modification below in order to fix the problem being described. When I create a new ASP.NET web forms application project using Visual Studio 2010, the CSS that is generated for the menu by default makes use of ".

Menu" (CSS classes) to apply style rather than "#menu" (an element with ID of "menu"). #menu - does not work . Menu - does work So, in other words, put this into your CSS file near the bottom: .

Menu ul li ul { display: none; } . Menu ul li { position: relative; float: left; list-style: none; }.

Same issue was with me too. But solved by removing jquery calls. :) or you can download and keep the .

Js script file inside the script folder instead of referencing it from online.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions