Okay
  Public Ticket #260441
H2 goes too small when lower resolution
Closed

Comments

  • Daniel started the conversation

    When I view my website through a browser window which is 1200px wide or less - the text which is H2 goes too small. I'd prefer it to stay bigger - or at least in proportion to H1

    How do I make this happen?

    Thanks,

    Dan

  •  1,070
    ThemeNectar replied

    Hey Dan,

    You can control the size for that manually by adding this into the  custom css box located in your Salient Options panel: 

    @media only screen and (min-width: 1300px) {
      body h2 {
          font-size: 28px!important;
      }
    }
    

    Cheers