HOW TO suppress the popout arrow on the menu while using ASP.NET 2.0 Menu control

"The PopOut arrowhead can be suppressed on the static menu by coding StaticEnableDefaultPopOutImage="False" (or DynamicEnableDefaultPopOutImage="False" for a submenu), or the arrowhead can be replaced with a graphic image by coding StaticPopOutImageUrl (or DynamicPopOutImageUrl for a submenu) and providing a URL to the image."

One a related note, if you run into the case where you find that while mousing over a menu item the menu is mangled in IE but works fine in Firefox, be aware that one convenient way to workaround the problem is to remove the <xhtmlConformance mode="Legacy" /> tag in web.config.

Comments