Gordana Jekic
Gordana Jekic

Reputation: 41

Removing comments number markers in a WordPress template

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:

screenshot

Upvotes: 1

Views: 1805

Answers (1)

Andrew
Andrew

Reputation: 76

I had the same issue and used the following CSS to hide the numbers -

.comment-list{ list-style-type:none; }

Upvotes: 5

Related Questions