• Hey,

    As you will notice, the quotes near the bottom of the page are much smaller than the regular text, which I increased the size of in the editor to 22. How can I make these quotes the same size? Can I make them a different font as well?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can do it by going to the Customise section (Menu Appearance > Customise), and then applying a custom CSS rule to font family and size

    Moderator bcworkz

    (@bcworkz)

    Example CSS:

    .wp-block-quote.is-style-default p {
        font-family: Arial;
        font-size: 22px;
    }

    FYI, this is not a Developing WordPress topic. I have moved it to Fixing WordPress. We know that doesn’t make much sense either, but that is where CSS questions are going. You could not have known this, so no worries. The topic URL remains unchanged.

    You can try adding the following css in your wordpress customized codes area:

    
    .wp-block-quote:not(.is-large):not(.is-style-large) {
        border-color: #b00f14;
        font-size: 22px;
    }
    

    If you want to change the font family, you can add that in too. Hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing font size of quotes’ is closed to new replies.