Your Time:
Our Time:
← Back to discussions

Block-quote quotation mark is incorrect

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 2 replies, 2 voices, and was last updated 7 years, 1 month ago by CatMissile.

Tagged: 

  • 2019-08-05 at 5:23 am
    Unknown Support Status
    #25623
    CatMissile
    Participant
    • Topics: 4
    • Replies: 13
    • Total posts: 17
    • Post count: 17

    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.

    2019-08-07 at 12:47 pm
    #25629
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    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;
    }
    2019-08-07 at 10:23 pm
    Unknown Support Status
    #25633
    CatMissile
    Participant
    • Topics: 4
    • Replies: 13
    • Total posts: 17
    • Post count: 17

    That worked. Thank you!

The topic ‘Block-quote quotation mark is incorrect’ is closed to new replies.