How to show main menu in page menu.?

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
8/25/2014 5:10:42 AM
Gravatar
Total Posts 10

How to show main menu in page menu.?

Hi all,

Can we show all menu in main menu to page menu in left slide?

I want to display both main menu and left side menu as the same.

Thanks,

8/27/2014 6:37:54 AM
Gravatar
Total Posts 18439

Re: How to show main menu in page menu.?

yes, it can be done, how to do it depends on menu configuration.

if PageMenu is configured like this in layout.master:

<portal:pagemenu id="PageMenu1" runat="server" useflexmenu="true"></portal:pagemenu>

then in theme.skin you can make it show all pages by removing the highlighted line below or changing it to -1:

<portal:FlexMenu runat="server" SkinID="PageMenu"
    ContainerElement="div"
    ContainerCssClass="art-box art-vmenublock"
    RootUlCssClass="art-vmenu"
    DescriptionCssClass=""
    ChildContainerElement=""
    ChildContainerCssClass=""
    RootLevelLiCssClass=""
    ItemDepthCssPrefix=""
    ParentLiCssClass=""
    StartingNodeOffset="0"
    MaxDataBindDepth="-1"
    RenderDescription="false"
    UlSelectedCssClass="active"
    LiSelectedCssClass=""
    AnchorSelectedCssClass="active"
    AnchorChildSelectedCssClass="active"
    UlChildSelectedCssClass="active"
/>

You must sign in to post in the forums. This thread is closed to new posts.