Okay
  Public Ticket #214906
mobile and ipad text-resizing CSS
Closed

Comments

  • GLAD started the conversation

    The text size on desktop screens looks fine but it's too big on iphones and ipads, is anybody aware of any CSS that will fix the resizing issue specifically for those 2 devices?

    massive thanks in advance!

  •  8,448
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel :

    @media only screen and (min-width: 1000px)  {
        body {
        font-size: 14px;
    }
    }
    

    Thanks


    ThemeNectar Support Team 

  • GLAD replied

    brilliant thanks a lot!