Adding Elements to MailChimp Pop-Up Form
-
I’m trying to add checkboxes that are “groups” in my MailChimp list, but every time I add the elements to the form fields, I doesn’t display on the preview or the pop-up. I’ve included the form fields below in the private content
Hello,
Thank you for contacting us.
It is not quite clear for us what problem do you have. Could you please explain a bit more and attach some screenshots?
And please provide your admin access so we could see this configuration.
Regards
I’ve given you admin & ftp access in another thread, do you need it again?
This is what his pop-up looks like now: 
I’ve created these groups in his MailChimp list:

And I’ve added the code into the MailChimp for WP plugin for that particular form on the pop-up:

But the frontend/preview shows the default one:

Basically he wants those three checkboxes on the MailChimp Popup Form. When the user selects 1-3 of the boxes they will be added to the particular group in the MailChimp list.
Thank you. It would be much faster if you could attach your admin panel for each topic you create. Because it is very time-consuming to look through all replies and look for admin details.
Ok, here is a code snippet to fix this problem (additional fields are just hidden at the moment). Place it to Theme Settings -> Custom CSS
.mc4wp-form p+p label {
display: block;
}
.mc4wp-form p {
display: block;
}
Regards
Thank you for the help! It worked perfectly. One more concern though, when there’s an error message, the popup extends past the image. What can we do to prevent this?

Try to fix it with this code snippet
.mc4wp-form {
margin-bottom: 0;
}
.mc4wp-alert.mc4wp-error {
padding: 0;
margin-top: -13px;
}