Hello,
The website I'm working on uses custom bulletted list, as seen at: http://christopherstevens.cc/fun/bulletsFromHell.html
I need to apply a revised version of this set of styles to a category list in the WordPress sidebar. The list in the above link looks like this:
<div id="list">
<ul>
<li>Level One</li>
<li>Level One</li>
<li>Level One</li>
<li class="nestedList">
<ul>
<li>Level Two</li>
<li>Level Two</li>
<li>Level Two</li>
<li class="nestedList">
<ul>
<li>Level Three</li>
<li>Level Three</li>
<li>Level Three</li>
<li class="nestedList">
<ul>
<li>Level Four</li>
<li>Level Four</li>
<li>Level Four</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
More specifically, can I add a class of "nestedList" to parent categories that have children, or is there a different class name available that I can use? Is there another solution that you would suggest instead? Can I set something in wp_list_categories() ?
Thank you much for the feedback in advance! :)