Remove bold font from quote block

Home Forums Automattic Flora and Fauna Remove bold font from quote block

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #164947 Resolve

    Anne S
    Member

    I’d like to remove the bold font style from the quote block – is this possible, please? I’ve always used the quote block for a question of the month, and now these look really overpowering. Example in this post: https://feather-stitching.com/2019/04/02/wipocalypse-march-2019/

    The blog I need help with is feather-stitching.com
    #164949

    Mike

    Hi there,

    >I’d like to remove the bold font style from the quote block – is this possible, please? I’ve always used the quote block for a question of the month, and now these look really overpowering. Example in this post: https://feather-stitching.com/2019/04/02/wipocalypse-march-2019/

    I see what you mean! The following CSS will remove the bold font style from your quotes. You can add the CSS from your Dashboard by going to Design > Customize > CSS.

    .wf-active blockquote {
    font-family: "Open Sans",sans-serif;
    font-weight: 300;
    }

    Let us know if anything else comes up :)

    #164951

    Anne S
    Member

    Thanks Mike – that worked a treat! The font is still larger than the normal body copy font, but at least it’s no longer huge and bold :)

    #164954

    David

    Hi Anne,

    If you replace the code above with this, the font size should match the body copy:


    .wf-active blockquote {
    font-family:"Open Sans", sans-serif;
    font-weight:300;
    font-size: 16px;
    }

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.