I need help for create drop down menu using "Sitemap"
i create menu in masterpage like this
//-----------------------Master page----------------------
<asp:SiteMapDataSource ID="SiteMapDataSource1"
runat="server" StartingNodeOffset="0" />
<asp:Menu ID="mnuHeader" runat="server"
CssClass="headermenulink"
DataSourceID="SiteMapDataSource1"
Orientation="Horizontal"
MaximumDynamicDisplayLevels="0"
SkipLinkText=""
StaticDisplayLevels="2"/>
//----------------------------------End master page--------------
and CSSClass is
//--------------------------------CSS-------------------------
#headermenu
{
position:relative; top: 153px; left: 250px; width: 500px;
padding: 2px 2px 2px 2px;
}
.headermenulink
{
font-family: Arial Black; font-size: 12px; font-weight: bold;
text-transform: uppercase;
}
//----------------------------End CSS-----------------------
then i need to hover on menu and show submenu i don't know how to show drop down menu with sitemap to easy edit.
Thanks.
i create menu in masterpage like this
//-----------------------Master page----------------------
<asp:SiteMapDataSource ID="SiteMapDataSource1"
runat="server" StartingNodeOffset="0" />
<asp:Menu ID="mnuHeader" runat="server"
CssClass="headermenulink"
DataSourceID="SiteMapDataSource1"
Orientation="Horizontal"
MaximumDynamicDisplayLevels="0"
SkipLinkText=""
StaticDisplayLevels="2"/>
//----------------------------------End master page--------------
and CSSClass is
//--------------------------------CSS-------------------------
#headermenu
{
position:relative; top: 153px; left: 250px; width: 500px;
padding: 2px 2px 2px 2px;
}
.headermenulink
{
font-family: Arial Black; font-size: 12px; font-weight: bold;
text-transform: uppercase;
}
//----------------------------End CSS-----------------------
then i need to hover on menu and show submenu i don't know how to show drop down menu with sitemap to easy edit.
Thanks.