Archived topic
How to align email field to left
3 replies · Started by achmad on September 4, 2018
I import wordsmith style from sitelibrary. But the align of email field of the comment form is center. I want to align email field to left. How to do that?
I used to use genesis framework.
Below is the screenshot
Thanks
Hi there,
can you go into the Customiser > Additional CSS and look for this code:
/* mailchimp form width */
.mc4wp-form input[type=submit], input[type="email"] {
text-align: center;
width: 100%;
}
and replace it with this:
/* mailchimp form width */
.mc4wp-form input[type=submit], .mc4wp-form-fields input[type="email"] {
text-align: center;
width: 100%;
}
Thanks :)
You're welcome. Just to note the Wordsmith Site has been patched now. So any future sites you build using Wordsmith won't have this problem.