Reputation: 41
I am building a theme based on Underscore's startup theme. I have applied custom styles to their comments.php
template, and stumbled on a comment number marker. How do I remove it from the template?
I can't even inspect those numbers. Take a look at the screenshot:
Upvotes: 1
Views: 1805
Reputation: 76
I had the same issue and used the following CSS to hide the numbers -
.comment-list{ list-style-type:none; }
Upvotes: 5