Hi Maicon,
Thanks for writing back with that information. Since contact form 7 uses different styling than our form, customizing it would be a little different. But if you’re using our plugin, there’s some css id’s and classes you can target to customize the form and align them. Here’s a sample:
.mc_merge_var label {
display: none;
}
.mc_merge_var {
width: 55%;
float: left;
}
.mc_signup_submit #mc_signup_submit {
width: 25%;
float: left;
margin-top: 0;
}
The first bit is for removing the label, the label and the input box are contained in one div, so if the whole box is aligned left, the subscribe button wouldn’t align vertically. Removing it makes aligning the boxes easier, but you can keep the label displayed and make other adjustments if you want.
The second section(.mc_merge_var) is for targeting the actual email input box and aligning it to the left, I also set a width value here. This can either be a percentage or another value like a set px width.
The last section(.mc_signup_submit #mc_signup_submit), as you can tell, is for aligning the signup button and setting a width.
In the plugin settings, at the bottom of the page there’s a CSS cheatsheet, that can provide additional help with targeting the form.
Also here’s some additional resources on styling forms with css:
https://www.sitepoint.com/style-web-forms-css/
https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Forms/Styling_HTML_forms
Let us know if you have any other questions.