Search code examples
csswordpresscommentsshortcodegenesis

Remove - before leave a comment on Wordpress Genesis theme


I just added the shortcode to add "leave a comment" in the footer of my posts and it shows a dash before. Is there a way to get rid of that dash? I've been Googling and not seeing any answers. My test site, I'm using a Genesis child theme.


Solution

  • Here is the css that is causing that dash.

    .entry-comments-link::before {
        content: "\2014";
        margin: 0 6px 0 2px;
    }
    

    In your child theme, simply overwrite it with

    .entry-comments-link::before {
        content: none;
    }