-
AuthorPosts
-
December 29th, 2018 at 13:13 #72133
Hi,
I would like to find a way to change the font size to the pre-defined “heading” settings. In the text editor you can select heading 1-2-3 etc. but to me heading 1 font size is too much bigger than the paragraph font size. I didn’t find a way to edit that, unless skipping heading 1 and go to smaller ones, but I would like to avoid that.
Thanks for the help.
Website: brainfuelness.com
December 31st, 2018 at 18:02 #72253ZedCryout Creations mastermindThe H1 tag is always used on the page/post/section title, so you shouldn’t be using it. The default WordPress editor hasn’t been providing it as an option for over a year.
The headings font size (relative to the general font size) is configurable in the theme’s options.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 5th, 2019 at 13:28 #72404Thanks for pointing that out. But my problem is that in Customizing -> Typography -> Content fonts, the headins parameters is already set at 100%. My issue is that even at 100% it’s still too big compared to the text. And I don’t want to use heading 4 instead of heading 2 just to get the adequate site. It would mess the SEO efficiency.
My question is then, can be add a css line that would make heading sizing even smaller?
For now I just added;
h2 {
font-size: 25px
}
For example, but maybe there is a way to do all at once and keep the same heading proportions.Thanks for your help.
Website: brainfuelness.com
January 13th, 2019 at 16:25 #72650ZedCryout Creations mastermindThe headings sizes are generated based on the configured value. You can override these values with additional CSS (the values are the current ones on your site):
h1 { font-size: 2.33em; } h2 { font-size: 2.06em; } h3 { font-size: 1.79em; } h4 { font-size: 1.52em; } h5 { font-size: 1.25em; } h6 { font-size: 0.98em; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic. -
AuthorPosts
The topic ‘Change headings font size’ is closed to new replies.