This topic has 2 replies, 2 voices, and was last updated 7 years, 1 month ago by CatMissile.
Tagged: Block quote
Viewing 3 posts - 1 through 3 (of 3 total)
I noticed that the block quote beginning quotation mark is the wrong one (it displays an closing quote-mark instead of a beginning one). Here’s one of our dev pages to see: http://wp5.temp.domains/~suburbt7/marriage-family/
I inspected the element and see that it’s styled by a class called “wp-block-quote”, but I could not find that style in any of the .CSS that was included with the theme, so I can’t see what’s going on.
To clarify, here’s a before and after example illustrating what it should look like: https://i.imgur.com/MSUSYBg.jpg
Can you please advise me on how we can fix this?
Thank you.
Hi, CatMissile
Thanks for reminding us. For changing this go the following directory path ../wp-content/themes/hopes/page_builder/theme_shortcodes.css
And find this blockquote p:before line no: 408
blockquote p:before {
content: "\f10e";
font-size: 18px;
font-family: FontAwesome;
line-height: 27px;
margin-left: -30px;
position: absolute;
}
Replace with
blockquote p:before {
content: "\f10d";
font-size: 18px;
font-family: FontAwesome;
line-height: 27px;
margin-left: -30px;
position: absolute;
}
That worked. Thank you!
Viewing 3 posts - 1 through 3 (of 3 total)
The topic ‘Block-quote quotation mark is incorrect’ is closed to new replies.