Archived topic
Submit button of Mailchimp form
3 replies · Started by Fekry on May 23, 2020
Hi there
In Mobile view, submit button of Mailchimp subscribe form (in sidebar) is more width than the fields. My you help me please?
https://www.screencast.com/t/UkYRWppo
Note: I use this CSS:
}
.sidebar .mc4wp-form input[type="submit"] {
width: 100%;
}
.entry-content .mc4wp-form input[type="submit"] {
width: 275px;
}
.mc4wp-form input[type="text"], .mc4wp-form input[type="email"] {
background-color: #303030;
}
thanks
Hi there,
Edit
.sidebar .mc4wp-form input[type=”submit”] {
width: 100%;
}
to this:
.sidebar .mc4wp-form input[type=submit],
.sidebar .mc4wp-form input[type=text],
.sidebar .mc4wp-form input[type=email] {
width: 100%;
}
It works,thanks.
No problem :)