• Resolved arazsalahli

    (@arazsalahli)


    Hi,

    After setting the different font sizes for each row on the newsletter form, the rows appear in the same font size on the mobile view. I can’t change the font size for the mobile view. For desktop view, the font sizes on the form appears just fine (as set). You can check it simply by entering the website from laptop and mobile phone.

    Regards,
    Araz

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi there!

    Depending on the CSS of your theme, it might change the form styles on mobile. You can add custom CSS to WP-Admin > Appearance > Additional CSS to overwrite it, though.

    Here is an example:

    @media screen and (max-width: 768px) {
        .mailpoet_form h1 {
            font-size: 1.5rem;
        }
        .mailpoet_form h2 {
            font-size: 1.2rem;
        }
        .mailpoet_form .mailpoet_form_paragraph {
            font-size: 1rem;
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Form font size not changing on mobile view’ is closed to new replies.