Adjusting Size of Headings

Hello,
How can I change the size of the H2, H3, H4, H5 headings?

Hello @Rumble32,

Thanks for asking. :slight_smile:

You can add following CSS under X > Theme Options > CSS:

h1, .h1 {
  font-size: 6em;
}

h2, .h2 {
 font-size: 5em; 
}

h3, .h3 {
  font-size: 4em;
}

h4, .h4 {
  font-size: 3em;
}

h5, .h5 {
  font-size: 2em;
}

h6, .h6 {
  font-size: 1em;
}

To learn more about CSS, please take a look at following resources:

https://www.w3schools.com/css/

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.