Archived topic
Checkboxes not aligned with text
5 replies · Started by Kim on May 6, 2018
Hi,
on our site all text is shown below the checkboxes (e.g. at woocommerce checkout, login or register). Can give some advice how to align the checkboxes with the text?
You can see it on the register page (https://training.kimfleckenstein.com/registrieren/)or on the screenshot for example:
https://www.dropbox.com/s/xtuwgevxxc19rkc/checkboxes.png?dl=0
Many thanks :-)
Hi there,
You have this CSS added which is causing the problem:
.woocommerce input {
width: 100%;
}
Removing it should fixes it.
That's it! Many thanks!
I've added this css to make the "buy now"-Button at the checkout page full width. Is there another way to achieve this?
Already solved it:
button#place_order.button.alt {width:100%}
No problem!