In my asp.net page with sitemap menus and sub-menu is added a java-scripting and jQuery image gallery, but when I go for submenu it is hidden behind the image gallery.
My menu’s css code are:
.menuItem
{
border:Outset 1px black;
background-color:Gray;
font:14px Arial;
color:White;
padding:8px;
}
Menu and SiteMap:
<asp:Menu ID="Menu1" StaticMenuItemStyle-CssClass="menuItem"
DynamicMenuItemStyle-CssClass="menuItem" Runat="server" Orientation="Horizontal" DataSourceID="srcSiteMap" />
<asp:SiteMapDataSource ID="srcSiteMap" Runat="server" ShowStartingNode="false" />
you can fix that with setting both elements
and then giving one element some lower number of
and other one some high number like
hope it helps.