Site logo

Archived topic

Signup Box

3 replies · Started by demoxing on August 16, 2020

Viewing posts 1–4 of 4

Hello,
My signup box looks good in desktop mode, but it's not showing properly in the mobile version. the "subscribe" box width isn't matching. I just want to remove the extra side space. and add a little bit of space between the email and subscribe section.

reference: https://imgur.com/SJ0sGgd

Hi there,

I'm seeing this CSS on your site:

#mc_embed_signup input.email {
    width: 300px !important;
}

If you need that, you can try to overwrite it on mobile:

@media (max-width: 768px) {
    #mc_embed_signup input.email {
        width: 100% !important;
    }
}

Thank you, Tom. it is working now.

You're welcome :)

This archived topic is closed to new replies.