First of all I would like to say that CMSMS is 1000x better than Joomla.. I switched a few weeks ago and never want to go back

My menu:
- Home
- Item 2
- Subitem 1
- Subitem 2
- Item 3
For better details, take a look at: www.voison.nl/smilow/
Now I want to show the parent-items (Home, Item 2, Item 3) horizontal at the top of the website. But when I choose for example Item 2, I want to show in my second menu (vertical at the side) the Subitems (this works) including the current parrent. So that it looks like this:
Home [Item 2] Items 3
Item 2
Subitem 1
Subitem 2
Does somebody knows how to achieve this using the parameters? Currently I am doing the following:
Code: Select all
//Horizontal menu
<div id="menuHoriz">
{menu template='simple_navigation.tpl' collapse='1' start_level='1' number_of_levels='1'}
</div>
//vertical menu
<div id="menuVert">
{menu template='simple_navigation.tpl' collapse='1' start_level='2'}
</div>
Michiel