Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @the bsbrb,
    You need to add next code via custom CSS plugin or into style.css in your child theme

    .comment-list {
        counter-reset: azeria-comments;
    }
    .comment-body {
        counter-increment: azeria-comments;
    }
    .comment-body:before {
        content: counter(azeria-comments, decimal);
    }

    Then you can style this counter as you need, just add styles to this element – .comment-body:before

    Child themes tutorial – here
    Custom CSS plugin (this for example, you can use anyone) – here

    Thread Starter the bsbrb

    (@the-bsbrb)

    A beautiful solution. Many thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Azeria numbered comments’ is closed to new replies.