Hi there,
The blank space and the padding is due to the way your theme has its widget borders set-up. It’s an easy fix though.
You can add the following CSS to your theme its stylesheet.
.mc4wp-form{ padding:20px; margin:0; }
You can add this by going to Appearance > Editor or over FTP by browsing to /wp-content/themes/your-theme/style.css.
Hope that helps!
Hi!
Thanks for your answer. I have just done the update. It helps but it still creates a white space inside the widget. 🙁
Do you know why there is no vertical space at all between the input text & the submit?
Thanks in advance
Hi,
Sorry, I should have checked more thoroughly. This is the necessary CSS to make it work. 🙂
.mc4wp-form{
padding:20px;
margin:0 !important;
}
To add vertical space between the email field and the submit button you can either wrap both of them in paragraphs or use the following CSS.
.mc4wp-form input[type="submit"] {
margin-top: 1em;
}
Good luck, hope that helps!
`
Great, glad that worked! Thanks for the update. 🙂
If you have a quick minute, a review on ww.wp.xz.cn for the plugin would make me really happy.
Thanks!