mod_menu gives you a menu editor in the admin, and a menu scomp you
can use from your templates.
The scomp renders the menu to html, which you then can style as you
like using css.
Here's from the menu scomp source:
% Menu structure is a like:
%
% <ul id="navigation" class="at-menu">
% <li id="nav-item-1" class="first">
% <a href="" class="home-page current">home</a>
% </li>
% <li id="nav-item-2">
% <a href="" class="about-page">about</a>
% </li>
% <li id="nav-item-3" class="last">
% <a href="" class="contact-page">contact</a>
% </li>
% </ul>
The docs are slightly out of date, but give properly hints on usage,
nonetheless:
http://zotonic.com/scomp-menu
//Andreas
2012/8/31 Amiramix <
li...@gjunka.com>: