Can I edit the default reply title in my SELA theme?

  • Unknown's avatar

    My reply title says “ONE THOUGHT ON” prior to the title of the comment it’s replying to. Can I edit, or get rid of this?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, you can’t really edit it, but it could be replaced. It would then be a static message and not include the number of comments or the post title. You can use the following CSS to replace the existing.

    .comments-title {
        visibility: hidden;
    }
    .comments-title:before {
        content: "My New Title";
        visibility: visible;
    }

    To hide it entirely, you can use the following instead.

    .comments-title {
        display: none;
    }
  • The topic ‘Can I edit the default reply title in my SELA theme?’ is closed to new replies.