Hi there! Thank you for your swift answers os far. One more question:
I'm using the default MailChimp Footer Sign-Up Form widget.
Now I'm trying to add one more required field (name) to the form. It shows nicely on the preview at MailChimp for WP > Form > Fields but on the page itself it shows only the email and send fields.
Hi there! Thank you for your swift answers os far. One more question:
I'm using the default MailChimp Footer Sign-Up Form widget.
Now I'm trying to add one more required field (name) to the form. It shows nicely on the preview at MailChimp for WP > Form > Fields but on the page itself it shows only the email and send fields.
How can I change this?
Hi,
Please add more this code to Customize > Custom CSS to do that:
.footer-subscribe .mc4wp-form{ max-width: 600px; } .footer-subscribe .mc4wp-form .mdes{ margin-left: -70px; } .footer-subscribe .mc4wp-form .mname { display: inline-block; float: left; width: 220px; margin-right: 10px; } .footer-subscribe .mc4wp-form .memail { display: inline-block; float: left; width: 220px; } @media only screen and (max-width: 769px){ .footer-subscribe .mc4wp-form .mdes{ margin-left: 0; } .footer-subscribe .mc4wp-form .mname, .footer-subscribe .mc4wp-form .memail { margin-right: 0; margin-left: 0; width: 100%; } .footer-subscribe .mc4wp-form .msubmit{ width: 100%; margin-left: 0; } .footer-subscribe .widget .mc4wp-form input[type="email"], .footer-subscribe .widget .mc4wp-form input[type="text"], .footer-subscribe .widget .mc4wp-form input[type="submit"]{ max-width: 100%; } }Best Regards,
PenciDesign