• Dear Guido,
    Since the last version of your GridBulletin (version 6.0) the Fontsize for tablet (and maybe other screens) are increased. I like/need the Fontsize of the previous versions of your GridBulletin.
    How can I overrule the Fontsize for tablets (and normal screen size) in my child Theme?

    Thanks,
    Hans van der Brugh

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Guido

    (@guido07111975)

    Hi Hans,

    I’ve added a static font size in the body tag but for the rest of the stylesheet I still use em so scaling in all type of screens would be better…

    For mobile screen you can use this Custom CSS:

    
    @media screen and (max-width:767px) { 
      body {font-size:15px; line-height:1.5;}
    }
    

    You can decrease the 15px into (for example) 14px.

    Guido

    Theme Author Guido

    (@guido07111975)

    Hi again,

    In an upcoming update I will add this to avoid different font sizes in portrait and landscape screen (in for example iPad):

    
    body {-webkit-text-size-adjust:100%;}
    

    So meanwhile you can add this too.

    Guido

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Font size (tablet)’ is closed to new replies.