I’ve a really complex site where it’s necessary to use categories to group entries.
Now I want to make a simple three-level-navigation tree of categories and entries.
For example:
<ul>
<li>Category 1</li>
<li class="active-parent">Category 2</li>
<li>Sub-category 1</li>
<li class="active-sub">Sub-category 2</li>
<li>Entry 1</li>
<li class="active-item">Entry 1</li>
<li>Entry 1</li>
<li>Entry 1</li>
<li>Sub-category 3</li>
<li>Category 3</li>
</ul>I think I’ll can fix the active layers, but the problem is finding out how to create that navigation tree. I also can’t find it on the forums, wiki, KB, docs etc. etc.
Can someone please help me with this issue? Thanks in advance!
[Moderator Edit: Moved from Bug Forum to How-to Forum]