Wanted to ask how I can create the Menues. I posted the HTML source code. What I can't figure out after reading the documentation is how I can implement them into my page:
Here's the horizontal menu I need:
Code: Select all
<!-- start horizontal menu -->
<div id="uppermenubar">
<div class="modulebox">
<ul id="uppernavbar">
<li><a href="index.php" id="active">Home</a></li>
<li><a href="contact.php">Kontakt</a></li>
</ul>
</div>
</div>
<!-- end menu -->and here's the vertical menu I need:
Code: Select all
<!-- start vertical menu -->
<div class="modulebox_menu">
<h3>Menutitle</h3>
<ul id="mainmenu">
<li><a href="index.php" id="main-active">Home</a></li>
<li><a href="contact.php">Kontakt</a></li>
</ul>
</div>
<!-- end vertical menu -->
