Hello,
when I use T2 my header font is too large, is there any way to make it smaller?
Hello,
when I use T2 my header font is too large, is there any way to make it smaller?
Hey Ryan,
Would you mind clarifying what T2 are you referring to?
If you are using an V2 Text element, you can always set the font size to the element:

Hope this helps.
I’m talking about just making the header only smaller…
I’m unable to find the settings in the image you are referring too.
Hello Ryan,
If you are using V2 Headline element, you will get the same Text Format property as shared by Jade when you inspect it. To help you better, please share the URL and point the exact header content that you need adjustment.
My website is www.wellneos.com feel free to look at any blog, the headers within them are all the same size.
Hey Ryan,
You may adjust the font sizes of the heading elements through custom CSS:
Please add this code in X > Theme Options > CSS:
.entry-content h1 {
font-size: 20px;
}
.entry-content h2 {
font-size: 18px;
}
.entry-content h3 {
font-size: 16px;
}
.entry-content h4 {
font-size: 15px;
}
.entry-content h5 {
font-size: 14px;
}
.entry-content h6 {
font-size: 13px;
}
Feel free to change the font size value in the code above.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.