• Hello,

    I installed the “MailChimp List Subscribe Form” Plugin, and I used the following code – and inserted it into a PHP File… in the “Edit Themes” Section (the only way to actually get it on this specific page.

    <?php mailchimpSF_signup_form(); ?>

    Now it works, but the Form Fields Fill Up and Extend All Across the Entire Page… is there any way to get it to Center with much smaller Fields? (so it looks more like a normal Form)

    Thank You!

    https://www.ads-software.com/plugins/mailchimp/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi MarkAtBP,

    Thanks for hopping in the forum. When adding the form into a php file, two elements would be added. A .mc_custom_border_hdr class that would wrap the header text and a #mc_signup id that wraps the entire form. Setting a width to both of these elements will shrink the form and allow you to center it.

    Here’s some example code you can add to the theme’s style.css file.

    #mc_signup, .mc_custom_border_hdr {
    	width: 200px;
    	margin: 0 auto;
    }

    This will make the whole form 200px and center it.

    Let us know if you have any other questions.
    -mc_d

    Hi, I’m having a similar issue, where the email text box insists on being 153×22. I used the CSS code upstairs, and set it to 600×80 to match the first & last name fields, and still won’t work.

    [Removed] – Moved to another thread.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Form Formatting Is Off…’ is closed to new replies.