Is it possible to add punch line under 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.
4/2/2014 7:37:49 AM
Gravatar
Total Posts 36

Is it possible to add punch line under menu

Is it possible to add punchline under menu. We tried adding the punch line using <br> tag but <br> itself is coming in the menu.

4/2/2014 9:08:55 AM
Gravatar
Total Posts 18439

Re: Is it possible to add punch line under menu

Hi,

This is a design question not a development question so I have moved it from the developer forum to the design forum.

Your question is not very clear but I interpret it to mean you want to show something additional to the menu link for a given menu item. You cannot just add markup into the page name to do this.

If your design is using FlexMenu for the menu, it is capable of rendering also a page description (which can be markup), and there is a database field for MenuDescription for each page. By default this MenuDescription is not shown in PageSettings.aspx  because none of the skins we ship with mojoPortal were designed to include the menu description and rendering it in a design that does not expect it just will mess up the menu. However you can make this field appear in pagesettings.aspx by adding this in the theme.skin file of your skin:

<portal:PageLayoutDisplaySettings runat="server"
ShowMenuDescription="true"
/>

Then you can populate the menu description for a page from Page Settings and if using FlexMenu it will render it, however it will be your job to style it with css or to use javascript to show and hide it as needed if needed. FlexMenu will only render the menu description if it is populated so you can leave it unpopulated on some pages if you wish.

If you are not talking about adding extra content per menu item and you just want to put something below the menu, then just add the larkup below the menu in layout.master.

Hope that helps,

Joe

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