Is it possible to use different css navigation bar on the same page?

Q: I need to be able to do two css menus on the same page. One vertical and one horizontal. Is it possible?

A: Each CSS3Menu should have unique ID in html code, for example:

<ul id="css3menu1" class="topmenu">
<ul id="css3menu2" class="topmenu">
...


and in generated .css files, for example:

ul#css3menu1,ul#css3menu1 ul{
ul#css3menu2,ul#css3menu2 ul{
...



You can use "Insert to page" wizard to insert several menus.
All IDs and folders will be generated automatically in this case.

Related