can you change font size per devise

  • Unknown's avatar

    Can I change font size per each devise?

    WP.com: Yes
    Jetpack: No
    Correct account: Yes

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    Are you looking to have a smaller font size when on mobile devices? This is possible with CSS. Here is a snippet that will allow the font size to be smaller on mobile devices:

    /* Default font size */
    body {
      font-size: 16px;
    }
    
    /* Adjust font size for screens smaller than 768px wide */
    @media (max-width: 767px) {
      body {
        font-size: 14px;
      }
    }

    You can do more here and adjust the font sizes to your preferences.

    I see you have a Business plan which gives you access to our live chat support. Please start a chat session from the link below and we’ll help be able to assist you in real time if you have additional questions.

    https://wordpress.com/help/contact

    Hope this helps!

    
    
    
  • The topic ‘can you change font size per devise’ is closed to new replies.