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:
How can I get this nested list?HTML Code:<ul> <li> Top Category1</li> <li> Top Category2 <ul> <li>Sub Category</li> </ul> </li> </ul>
What I currently get is this:
HTML Code:<ul> <li> Top Category1</li> <li> Top Category2 </li> <ul> <li>Sub Category</li> </ul> </ul>


Reply With Quote
Duh, I figured it out! I'm sorry


