I have a question about dropdown menus. I want to create a dropdown menu using css and html list. Something like this:
<div id="navcontainer">
<ul id="navlist"><li id="active"><a href="#" id="current">Item one</a><ul id="subnavlist"><li id="subactive"><a href="#" id="subcurrent">Subitem one</a></li>
<li><a href="#">Subitem two</a></li>
<li><a href="#">Subitem three</a></li>
<li><a href="#">Subitem four</a></li>
</ul>
</li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
</ul>
</div>
The problem is that I don't know how to do that with Mambo. I know how to create the main menu with Item one; Item two, Item three, Item four, and then call the php script:
<?php mosLoadModules('mainmenu', -1); ?>
But how do I embed the submenu items; Subitem one, Subitem two, Subitem three, Subitem four, as a submenu for Item one. I have seen websites that are done with Mambo with dropdown menus, so I know its possible. But I can't seem to get it to work. Any help is appreciated.