• Hi – When I change the font size of H1 header (so that it looks aesthetically better) the line spacing changes and creates a big gap separating the text – any ideas how to rectify? I’m using cherry theme.

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

Viewing 1 replies (of 1 total)
  • The size of the line-height is proportional to the font-size. Assuming you are currently using a unitless value for your line-height such as:

    h1 {
    line-height: 1.5;
    }

    You could try give it a pixel value instead.

    h1 {
    line-height: 30px;
    }

Viewing 1 replies (of 1 total)

The topic ‘H1 Font Size – Line Spacing Problem’ is closed to new replies.