I'm in need of some help.
Basically I would like to have a menu structured like so:
Code: Select all
<ul class="myClass">
<li>Parent 1</li>
<li class="selected">Parent 2
<ul>
<li>Child 1 of Parent 2</li>
<li class="selected">Child 2 of Parent 2</li>
</ul>
</li>
<li>Parent 3
<ul>
<li>Child 1 of Parent 3</li>
<li>Child 2 of Parent 3</li>
</ul>
</li>
</ul>
I have tried to implement the above behaviour, but I have run into some problems. I have modified the buildCascadingMenu function of front.func.inc.php, but it gives a 'selected' class to every parent that has children, which is not what I want.
I'm using NAV_LIST_UL like so:
Code: Select all
{NAV_LIST_UL:,0,2,navig twolevel,selected}
Thanks!