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>