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 #2876037
H2 size on pages
Closed

Comments

  • andrewsgibson started the conversation

    Hello, 

    I'd like to set the size of H2 headings on my pages to 32 px. But when I set that in the block settings in gutenberg the text size doesn't change. I have to change the heading block to paragraph instead, losing SEO advantages. I assume that there's a master setting somewhere but I can't find it. Can you help?

    Thanks,

    Andrew

  •  2,492
    PenciDesign replied

    Hi,

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

    body.page .post-entry h2,
    body.page .wpb_text_column h2,
    body.page .elementor-text-editor h2,
    body.page .woocommerce .page-description h2 {
        font-size: 32px;
    }

    Regards,
    PenciDesign.



  • andrewsgibson replied

    Thanks, that worked. Is there a way to do the same on posts too, in case I want them to look the same?

    Thanks,

    Andrew

  •  2,492
    PenciDesign replied

    Hi,

    This code will apply to the single post:

    body.single .post-entry h2,
    body.single .wpb_text_column h2,
    body.single .elementor-text-editor h2,
    body.single .woocommerce .page-description h2 {
        font-size: 32px;
    }

    Regards,
    PenciDesign.


  • andrewsgibson replied

    Thanks, worked perfectly.