Hi @ingeklikt,
Are you familiar with adding custom CSS? This CSS will override your theme and set the input fields to full width:
.yikes-mailchimp-container label {
width: 100%;
}
.yikes-mailchimp-container label input {
width: 100%;
}
.yikes-mailchimp-container .EMAIL-label input {
width: 93%;
}
Let me know how that goes.
Cheers,
Kevin.
That did the trick, thanks a lot!
Ouch one more problem: if a form contains checkboxes, they are centrally aligned 🙁
See https://digital-power.com/mkb-ontbijtsessie
Is there a fix for this too? 🙂
Try changing the original CSS I gave you to this.. I forgot that checkboxes were also input fields!
.yikes-mailchimp-container label {
width: 100%;
}
.yikes-mailchimp-container label input[type="text"] {
width: 100%;
}
.yikes-mailchimp-container .EMAIL-label input {
width: 93%;
}