(Solved)-Menu question

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
DA
Forum Members
Forum Members
Posts: 51
Joined: Sun Jul 30, 2006 3:56 am

(Solved)-Menu question

Post by DA »

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
Last edited by DA on Sun Apr 29, 2007 12:11 pm, edited 1 time in total.
User avatar
Nullig
Power Poster
Power Poster
Posts: 2380
Joined: Fri Feb 02, 2007 4:31 pm
Location: Comox Valley, BC

Re: Menu question

Post by Nullig »

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:

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>
Nullig
DA
Forum Members
Forum Members
Posts: 51
Joined: Sun Jul 30, 2006 3:56 am

Re: Menu question

Post by DA »

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
Post Reply

Return to “Layout and Design (CSS & HTML)”