I just tried to use CategoriesDressing 2.6 for those nested ul / li constructs i would prefer. But i do not get a nested list with my top and sub categories. The top-category ends with /li and the sub-categories under it are a separated ul. It should be:
HTML Code:
<ul>
<li> Top Category1</li>
<li> Top Category2
<ul>
<li>Sub Category</li>
</ul>
</li>
</ul>
How can I get this nested list?
What I currently get is this:
HTML Code:
<ul>
<li> Top Category1</li>
<li> Top Category2 </li>
<ul>
<li>Sub Category</li>
</ul>
</ul>
Bookmarks