Archived topic
Text randomly going off to the side
3 replies · Started by Matthew on August 6, 2019
Hi
Do you know why the text is appearing so far to the right? I can't seem to figure out why it's doing this.
If you take a look at the page linked. You will see instead of being next to the check box its all the way over to the right.
Thanks for any help you can provide! :)
Hi there,
the plugin is injecting CSS to force all input fields to 100% width.
Try this CSS to override it for the checkbox:
.wpt-form-checkbox {
width: auto !important;
vertical-align: middle
}
And as its outputing the checkbox as a list this CSS to remove the left hand margin:
.wpt-form-set {
margin-left: 0;
}
That’s solved it, thank you! :)
You're welcome