menu template, not getting it to work
Posted: Wed Sep 14, 2011 6:10 am
Hi Everyone
Ive been trying to setup my own menu template but im having a hard time getting it set up. The goal is creating a menu in which the first children pages are always visible, but children below that are not. Basicly, in html i would like the following:
Could anyone give me some pointers on how to get this set up? Ive been reading the handbook on managing menu's but i just dont seem to get it. Does anyone have some tips or pointers on how to work this out, or maybe some links to tutorials or documentation on getting the menu to work? Thanks in advance
Ive been trying to setup my own menu template but im having a hard time getting it set up. The goal is creating a menu in which the first children pages are always visible, but children below that are not. Basicly, in html i would like the following:
Code: Select all
<ul class="menu">
<li>
<a>
1 Home
</a>
</li>
<li>
<a>
2 PageWithChildren
</a>
<ul class="children">
<li>
<a>
Child2.1
</a>
</li>
<li>
<a>
Child2.2
</a>
</li>
</ul>
</li>
</ul>