Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2864721
Pull Quote block font size
Closed

Comments

  • SerWankel started the conversation

    Hello, 

    How can I adjust the font size used in the "Pull Quote" block type? 

    I have tried adjusting various font sizes in the Customising > Single Posts > Font Size, but no options that I tried had any effect on the pull quote text. 

    I did find that changing the "Blockquote Style" option in Customising > Single Posts > General changed the style of the Pull Quote block. However, changing the font size for Block Quotes did not alter the font size in the pull quote block. 

    Apologies but I cannot currently share an example, as my website is in maintenance mode. 

    Thank you in advance!

    Shaun

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .post-entry blockquote,
    .post-entry blockquote p,
    .wpb_text_column blockquote,
    .wpb_text_column blockquote p,
    .woocommerce .page-description blockquote,
    .woocommerce .page-description blockquote p {
        font-size: 16px;
        line-height: 1.2;
    }
    Change 16px by your custom value.

    Regards,
    PenciDesign.

  • SerWankel replied

    Thank you for the assistance! 

    That custom CSS has altered the line height, but no matter what values I try the font size does not alter. 

    I shall return to this thread once my website is live so I can share an example. :) 

  •  2,492
    PenciDesign replied

    Hi,

    Please modify the CSS like this:

    .post-entry blockquote,
    .post-entry blockquote p,
    .wpb_text_column blockquote,
    .wpb_text_column blockquote p,
    .woocommerce .page-description blockquote,
    .woocommerce .page-description blockquote p {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    Regards,
    PenciDesign.

  • SerWankel replied

    That worked! Thank you for the incredibly quick reply.