Plugin Contributor
Lap
(@lapzor)
Seems like some styling conflict with your theme.
The following CSS should fix that:
.mc4wp-checkbox mc4wp-checkbox-woocommerce { line-height: initial; }
You can add this code under Appearance > Customize > (…) > Additional CSS (or similar naming, depends on your theme). Or if you don’t have a spot to put custom CSS in your theme you can add it via a plugin like Simple Custom CSS.
Hope that helps. If you have any further questions please let me know.
Thank you. I tried that CSS, but it did not fix the issue. I’ve left it in for now so you can see.
Hey @mikesomersetinteractivecom,
Can you please try the following code?
.mc4wp-checkbox-woocommerce input[type='checkbox'] {
margin: 0 5px 0 0 !important;
}
.mc4wp-checkbox-woocommerce span {
line-height: normal;
}
It should make the checkbox line-height appear like in this screenshot.
https://www.dropbox.com/s/2m34qhs5yos1hja/Screen%20Shot%202022-01-13%20at%208.23.13%20AM.png?dl=0
This will work. Thank you