Multiple menus?
teho
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
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
0
Comments
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.
My Website index | My Blog