views:

25

answers:

0

In SharePoint 2010, how do you remove the Home Menu in the menu system.

I want the level below the Home Menu to be displayed.

Here is my configuration in my master page. I do have Publishing turned on (I tried it with out and no difference)

                        <SharePoint:AspMenu
                        ID="TopNavigationMenuV4"
                        Runat="server"
                        EnableViewState="false"
                        DataSourceID="topSiteMap"
                        AccessKey="<%$Resources:wss,navigation_accesskey%>"
                        UseSimpleRendering="true"
                        UseSeparateCss="false"
                        Orientation="Horizontal"
                        StaticDisplayLevels="2"
                        MaximumDynamicDisplayLevels="10"
                        CssClass="s4-tn" />


                    <SharePoint:DelegateControl runat="server" ControlId="TopNavigationDataSource" Id="topNavigationDelegate">
                        <Template_Controls>
                            <asp:SiteMapDataSource
                              ShowStartingNode="True"
                              SiteMapProvider="CombinedNavSiteMapProvider"
                              id="topSiteMap"
                              runat="server"
                              StartingNodeUrl="sid:1002"/>
                        </Template_Controls>
                    </SharePoint:DelegateControl>

Here is the menu. In this case "Navigation" was the name of my Home Menu (the name I gave SharePoint when i installed it)

alt text

related questions