H2 Font Size

I use X theme.

The H2 font is larger than the H1 font, which looks ridiculous.

How can I change the size of the H2 font?

Thank you.

1 Like

Hi @donnasvei,

Thank you for writing in, I think you’re comparing a hardcoded H1, and an H2 with a class (or vice versa). If this is the case, please add a class to your H1

e.g.
<h1 class"h3">Lorem</h1>

This will make your H1 look like an H3, I understand that seems to don’t make sense, but it does.

But if you’re using a Headline or Text element you can change the text formatting and styling in the element settings.



Hope it helps,
Cheers!

Hi,

I appreciate your advice and I don’t really understand it.

I use H1 in the title field of blog posts. It happens automatically.

I want to use H2 on blog post section headers. I highlight the words in my section headers and then select an H level from the drop-down “paragraph” menu. When I choose H2, it’s huge. How can I reset H2 so that it’s a smaller font size?

Thank you,

Donna

1 Like

Hello Donna,

Are you using Cornerstone in building the posts of just the WP Editor? You may need to add a custom css to make changes of the font size. Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

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

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

If this is not helping, kindly provide us access to your site so that we can check your settings. Please create a secure note with the following info:
– Link to your site
– WordPress Admin username / password
​
To know how to create a secure note, please check this out: https://theme.co/apex/forum/t/how-to-get-support/288

Regards.

1 Like

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