Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, I’m seeing this in the CSS for your site.

    @media screen and (max-width: 885px) {
      .entry-content {
        font-size: 0.75em;
        line-height: 2em;
        width: 90%;
      }
    }

    The 0.75em font size is what is causing the issue. Add the following to your custom CSS and it will bring it back to the original size, or you can of course change it to your liking.

    @media screen and (max-width: 885px) {
      .entry-content {
        font-size: 1em;
      }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Home page font on mobile is much smaller comparing to other pages’ is closed to new replies.