Change headings font size

  • Author
    Posts
  • #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

    #72253
    Zed
    Cryout Creations mastermind

    The 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.
    #72404

    Thanks 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

    #72650
    Zed
    Cryout Creations mastermind

    The 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.
Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Change headings font size’ is closed to new replies.