Viewing 7 replies - 1 through 7 (of 7 total)
  • Just go into your style.css file and add this code, replacing 280 with whatever width you need.
    #mc_signup_form .mc_input {
    width:280px;
    }

    Hey Amy,

    The suggestion above should help you widen the width of your input fields. Were you looking to extend the height of your form, or the width?

    If your subscribe button is only halfway visible, this might be more of an issue with the element that’s around your form, so not something necessarily within the plugin form’s CSS.

    If you’re looking to change the height of your MailChimp form, you can do so by adding a bit of CSS code to your site’s stylesheet:

    #mc_signup_form {
    height: 1000px;
    }

    Where 1000 can be any pixel amount you wish.

    If you find that the above doesn’t resolve your issue, then it is likely an issue with the CSS that’s around your sign up form. If you’d like, you can post a link to your website and I’d be happy to take a second look.

    -tk

    Thread Starter amyhall

    (@amyhall)

    Thanks mc_tak! But it didn’t work! Here’s the website https://www.marygauthier.com/ please help!

    My subscription form is too short and my subscribe button is halfway off the form.

    The subscribe button displays fine for me. If you want it to be resized to 100px, then add the following:

    #mc_signup_submit.button {
      width:100px;
    }

    You could control by adjusting the left margin:

    #mc_signup_submit.button {
      margin-left:65px;
    }

    How can I make the form longer so that my subscription button fits on it?

    To make the form longer, mc_tak’s code should work fine. I have used this code to check it:

    #mc_signup_form {
    height: 250px;
    }

    Agreed!

    In taking a look at the website on my end, I’m seeing the Subscribe button in full, using Chrome on OSX. If you’re still seeing issues with the button, can you provide us with the browser you’re using, as well as screenshot of how it looks on your end? You can send this to mailchimptk[at]gmail.com.

    Look forward to hearing back!

    Thread Starter amyhall

    (@amyhall)

    Thanks it worked!!!

    awesome, glad to hear. let us know if you any further q’s!

    -tk

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘subscription form too short’ is closed to new replies.