Page 1 of 1
Subtitles in menu
Posted: Thu Jul 12, 2012 2:49 am
by lchestnut
Is there a way to add subtitles to the menu? I am moving my site from Joomla to CMSMS. My current site is
http://peppersville.com with subtitles but I cant find how to recreate it.
Thanks
Lisa
Re: Subtitles in menu
Posted: Thu Jul 12, 2012 3:20 am
by fredp
Hi,
One way would be to put the menu subtitle content into one of the "extra" page attributes (e.g. Extra Page Attribute 1) for each page that has a subtitle. You have access to these attributes in menu templates when you set the loadprops menu module parameter to true {menu loadprops=1...} . So, you could try something like this in your menu template...
Code: Select all
<span class="subtitle">{$node->extra1}</span>
Of course, setting loadprops=1 does more db queries to load the page properties. You'll have to determine if this meets your performance requirements.
I'm sure there are other ways.
Hope this helps,
Fred P.
Re: Subtitles in menu
Posted: Thu Jul 12, 2012 10:44 am
by lchestnut
I will try that.
Thanks