Genesis - Change body text line height

Line height is the spacing between each line of text on your site. If you'd like to increase or reduce the line height on your site, you can use the following code snippet:

body, p {
    line-height: 2.5rem;
}
How to add CSS code to your theme >

Notes:

  • This will apply to body text only (not buttons, navigation, headings, etc)
  • Feel free to adjust the 2.5 value to whatever line height you prefer. Any decimals are supported. Just be sure to keep the "rem" portion intact.