Blockquote displays extra “
-
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 matchingblockquote: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; }
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Blockquote displays extra “’ is closed to new replies.