Why is the submenu showing up on the top instead of the bottom? and this if I place a <p> </p > otherwise I would not even see the submenu at all<form id="form1" runat="server"> <div> <p> </p> <ignav:UltraWebMenu ID="UltraWebMenu1" runat="server"> <ExpandEffects ShadowColor="LightGray" Type="Slide" Opacity="80" ></ExpandEffects> <Items> <ignav:Item Text="options A"> <Items> <ignav:Item Text="1a"></ignav:Item> <ignav:Item Text="2a"></ignav:Item> </Items> </ignav:Item> <ignav:Item Text="options B"> <Items> <ignav:Item Text="1b"></ignav:Item> <ignav:Item Text="2b"></ignav:Item> </Items> </ignav:Item> </Items> </ignav:UltraWebMenu> </div> </form>
Hello,
It happens because of lack of content on the page. Because of standards mode (well defined DOCTYPE) IE does not return actual height of visible document, but just content area. Which in case of lack of content is empty and very short in height. That's why menu is "thinking" here is not enough free space to display on bottom and tries to display on top.
Possible workaround is to make content on page (just BR works) or to remove DOCTYPE declaration.
Hi, This is not the case since what I was demoing was just a snippet of the entire page.
The real page as part of a master page. This aspx page also has a usercontrol been the menu. There is a lots of content within the entire rendered page. With 2008 vol3 was no problem with submenu but upgrade to 2009 vol1 and then my submenu was gone. The solution found was to set the property "EnhancedRendering="False".
No idea why got to do this!
Thanks