• What snippet can I put in my child themes style.css to increase the spacing between lines for <h> tags? I have the snippet in their for standard text, but want to do the same for <h> tags.

    #content {
    line-height: 24px;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • I am assuming that you mean the header tags; <h1>, <h2>, .... If that is so, try this:

    h1, h2, h3, h4,
    h5, h6 {
       line-height: 24px;
    }

    Put in as many of the tags as you need.

    Thread Starter Drew75

    (@drew75)

    Thank you, that’s what I needed.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Increse spacing between tag text?’ is closed to new replies.