Okay
  Public Ticket #179916
Mobile Font Sizes
Closed

Comments

  •  21
    Simon started the conversation

    Is there a way to adjust the size of h1 for mobile only?

  •  8,838
    Tahir replied

    Hey Simon!

    Sure , Simply use a Mobile media query and set h1 size in there. Add this into the Custom CSS box located in your Salient Options panel:

    @media only screen and (max-width: 470px) {
    h1{
    font-size:12px !important;
    }
    
    }

    Cheers


    ThemeNectar Support Team