Multiple menus?

tehoteho Registered Users Posts: 18 Big grins
Hi,

Can I define more than one menu? I would like to have one menu for one theme/category and below, and another for another theme/category and below.

Is that possible?

- Terje

Comments

  • AllenAllen Registered Users Posts: 10,013 Major grins
    edited December 30, 2010
    teho wrote: »
    Hi,

    Can I define more than one menu? I would like to have one menu for one theme/category and below, and another for another theme/category and below.

    Is that possible?

    - Terje
    If you are referring to navbars, you can. Use different ID's for each and
    apply the same class to them so one set of CSS will apply.

    <div id="nav1" class="menu">
    <div id="nav2" class="menu">

    #nav1 {display: none;}
    #nav2 {display: none;}
    .category_xxxxxx #nav1 {display: block;}
    .category_yyyyy #nav2 {display: block;}

    If you are wanting it for different themes it's more difficult and will require
    specific CSS in the theme, could be very tricky.
    Al - Just a volunteer here having fun
    My Website index | My Blog
Sign In or Register to comment.