• h1.entry-title is large with an overline which is fine.

    However, if I want to make a heading in .entry-content, the style for h2 is identical to h1.

    It’s visually very confusing. It suggests the h2 is on the same level as h1.

    My only option is to choose h3 instead of h2 but logically I shouldn’t have to skip h2 to mimic the expected style of heading.

    • This topic was modified 5 years, 2 months ago by Clarus Dignus.
Viewing 1 replies (of 1 total)
  • Hi, not sure why it was coded that way but if you want to change how the H2 is displayed you can do something like the following in Appearance->Customize->Additional CSS

    @media only screen and (min-width: 768px) {
        .post h2 {
            font-size: 2em;
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Why are h1 and h2 styled the same?’ is closed to new replies.