Comments Outline

Is there a way to remove the outline bullets from the comments section?
What I mean is the 1.
a.
before each comment.
Thank! Awesome theme!

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it?

Best Regards,
Support

Hi,
I never saw the email response back to my question. Hope it’s still valid.
I found this code in a different thread:
#content ol {
list-style: none;
}
But it only removes the numbers. Not the lettering for each comment response after the first one. I would like them to not be numbered and lettered at all if possible.
My site: https://reactionarytales.com
Thanks again!

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*remove border from comments*/
.comments-area article{
  border-bottom:none !important;
}

Best regards,
Support

Hi,
I didn’t mean removing the border. I meant the numbering system. The comments are numbered 1. A. a. etc. I would like those to now show up if possible. I found this code: #content ol { list-style: none; } that removed some of the numbers but not any of the letters.
I attached a screen shot circling what I mean if that helps.

Hello there,

Please try out this CSS code snippet:

#content ol ol {
    list-style: none;
}

.comment li {
    list-style: none;
}

Best Regards,
Support

That did the trick!
Thank you so much! Appreciate all your help. :slight_smile:

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support