J
Jerry C
I have a menu control in different places on my page and some times the
dropdown menu items show an inch or two above the main menu selection.
the code is:
<table><tr><td>
<asp:Menu ID="Menu1" runat="server" Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/MenuBehaviors_cs.aspx"
Text="Book 1"
Value="Book 1">
<asp:MenuItem NavigateUrl="~/MenuBehaviors_cs.aspx"
Text="Chapter 0"
Value="Chapter 0"/>
<asp:MenuItem NavigateUrl="~/MenuBehaviors_cs.aspx"
Text="Chapter 1"
Value="Chapter 1">
</asp:MenuItem>
</asp:MenuItem>
</Items>
<StaticMenuItemStyle BorderColor="Black" BorderStyle="Solid"
BorderWidth="2px"
HorizontalPadding="10px" />
</asp:Menu>
</td></tr></table>
This will work ok on some parts of the page and not work on other parts it
kind of looks like this
Chapter 0
Chapter 1
Book 1
when it should look like:
Book 1
Chapter 0
Chapter 1
Thank you
dropdown menu items show an inch or two above the main menu selection.
the code is:
<table><tr><td>
<asp:Menu ID="Menu1" runat="server" Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/MenuBehaviors_cs.aspx"
Text="Book 1"
Value="Book 1">
<asp:MenuItem NavigateUrl="~/MenuBehaviors_cs.aspx"
Text="Chapter 0"
Value="Chapter 0"/>
<asp:MenuItem NavigateUrl="~/MenuBehaviors_cs.aspx"
Text="Chapter 1"
Value="Chapter 1">
</asp:MenuItem>
</asp:MenuItem>
</Items>
<StaticMenuItemStyle BorderColor="Black" BorderStyle="Solid"
BorderWidth="2px"
HorizontalPadding="10px" />
</asp:Menu>
</td></tr></table>
This will work ok on some parts of the page and not work on other parts it
kind of looks like this
Chapter 0
Chapter 1
Book 1
when it should look like:
Book 1
Chapter 0
Chapter 1
Thank you