Hi all,
I would like to have a horizontal drop down menu, and also a left vertical fly-out menu on the same page.
Is this possible??
Many thanks
D.A
(Solved)-Menu question
(Solved)-Menu question
Last edited by DA on Sun Apr 29, 2007 12:11 pm, edited 1 time in total.
Re: Menu question
What I do is to separate the menu into two main items(pages), called hmenu and vmenu.
Place all of your horizontal pages under the hmenu item and create your vertical pages under the vmenu item.
Call the hmenu on your horizontal top menu and vmenu on your side menu.
I do it like this:
Nullig
Place all of your horizontal pages under the hmenu item and create your vertical pages under the vmenu item.
Call the hmenu on your horizontal top menu and vmenu on your side menu.
I do it like this:
Code: Select all
<div id="menu_horiz">
<h2 class="accessibility">Navigation</h2>
{menu template='cssmenu.tpl' start_level='2' start_element='1.1' show_root_siblings='1'}
<hr class="accessibility" />
</div>
<div id="menu_vert">
<h2 class="accessibility">Sub Navigation</h2>
<ul><li>{menu template='simple_navigation.tpl' start_level='2' start_element="2.1" show_root_siblings='1'}</li></ul>
<hr class="accessibility" />
</div>
Re: Menu question
Hi Nullig,
Thanks for the reply. That answers my question perfectly.
Now all I have to do is find someone to do it, because it is beyond me.
Many thanks
DA
Thanks for the reply. That answers my question perfectly.
Now all I have to do is find someone to do it, because it is beyond me.
Many thanks
DA