hi,
i have a quick question… i have to change the way categories are listed on my site. At the moment i use
{exp:weblog:categories weblog="about" style="nested" dynamic="on" class="mainCategoryNav" id="accordion"}
<a href="http://{path=weblog/index}class=toggler">{category_name}</a>
{/exp:weblog:categories}which generates this html code:
<ul id="accordion" class="mainCategoryNav">
<li>
<a href="http://localhostclass=toggler">About</a>
</li>
<li>
<a href="http://http:/localhostclass=toggler">some element with nested categories</a>
<ul><!-- class name should be assigned here-->
<li>
<a href="http://localhostclass=toggler">nested category</a>
</li>
</ul>
</li>
</ul>is it somehow possible to assign any class to the second nested element?
and if this is not possible, is there any workaround to get nested categories using style=“linear” or something?