Okay
  Public Ticket #771113
H2 headings shrinking on mobile
Closed

Comments

  • Jodi started the conversation

    http://orangestar.com/instagram-tips-for-buidling-brands/

    H2 shrinks smaller than H3s when viewed on mobile. I saw a closed ticket that said this was fixed, but I'm still seeing this with 

    SalientVersion: 7.0.8

  •  8,994
    Tahir replied

    Hey ,
    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (max-width: 690px) {
        body .row .col h3, body h3 {
            font-size: 21px !important;
            line-height: 21px !important;
        }
    }
    @media only screen and (max-width: 690px) {
        .col h2, body h2 {
            font-size: 21px !important;
            line-height: 21px !important;
        }
    }
    

    Best.


    ThemeNectar Support Team