• The text size is too large on a page in my website. How can I adjust the size of H1-H2-H3-H4-h5 and H6. I cannot find any place that will allow me to change size.

    I have tried to adjust these through Typography with no affect.

    Dave Herries
    daveherries@mail.com

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

Viewing 1 replies (of 1 total)
  • Hi Dave

    You can change the headings font size with custom CSS.

    Navigate to Appearance > Customize > Additional CSS and add this CSS code (these are the default font sizes, so change any or all of them to whatever size you want)

    h1 {
    font-size: 32px;
    }

    h2 {
    font-size: 30px;
    }

    h3 {
    font-size: 28px;
    }

    h4 {
    font-size: 26px;
    }

    h5 {
    font-size: 24px;
    }

    h6 {
    font-size: 22px;
    }

    PS I’d recommend you edit your original post to remove your email address, as it’s publically viewable.

Viewing 1 replies (of 1 total)

The topic ‘Changing Heading text size’ is closed to new replies.