I am coding a website that uses two differen menu at the same page, the idea is that the first one use a horizontal template and the second one uses a vertical template, and both of the display different info.
I used the instructions in this post http://themes.cmsmadesimple.org/menu_manager_options.html and everything goes fine with the exception that both menus are horizontal.
I tried this on the template:
Code: Select all
<div id="menu_horizontal">
<h2 class="accessibility">Navigation</h2>
{menu number_of_levels="2" template='cssmenu.tpl'}
<hr class="accessibility" />
</div>
<div class="menu_vertical">
<h2 class="accessibility">Secondary Navigation</h2>
{menu start_level="3" number_of_levels="4" template='cssmenu2.tpl'}
</div>
Thanks!!!!!

