wordpress threaded comments – customize nested ul / how child ul is displayd
What you need is a custom Walker. You will probably use wp_list_comments() somewhere in your comments.php template file. There you can pass a walker parameter in the argument array to tell WordPress you want to style the list on your own. This requires you to extend the Walker class. The following resources should give you … Read more