• Resolved bdwelle

    (@bdwelle)


    the blockquote:before class includes a content variable that makes it display a ” mark all by itself before the quotation. I don’t see a matching blockquote:after class, and the standalone ” looks awkward anyhow. I had to override this with custom CSS.

    blockquote:before {
        content: "\201C";
        display: inline-block;
        color: black;
        background: white;
    }

    changed to

    blockquote:before {
        content: "";
        display: inline-block;
        color: black;
        background: white;
    }
    • This topic was modified 6 years ago by bdwelle.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author thememattic

    (@thememattic)

    Hi @bdwelle.

    Thanks for writing in.

    We’ve found that you’ve placed additional quotes on the content itself. We’d have also suggested the CSS fixing. Seems like you got it all figured out.

    If you’ve any further questions or feedback? Just hit reply and we’ll gladly help.

    Thanks,

Viewing 1 replies (of 1 total)
  • The topic ‘Blockquote displays extra “’ is closed to new replies.