[Support request] Separate font size in mobile and desktop view

Home Forums Support [Support request] Separate font size in mobile and desktop view

Home Forums Support Separate font size in mobile and desktop view

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1308978
    vanya

    I have tried searching solution for this topic but I couldn’t fit anything working.
    I don’t understand what is inline

    I need separate font size on mobile and desktop view for body of the content

    Please help me with code

    #1309142
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You can:

    1. Set your body font size in the Customizer.
    2. Set your body font size for mobile with some CSS:

    @media (max-width: 768px) {
        body {
            font-size: 17px;
        }
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.