Solved
Issue with field spacing on form
Hello,
I am having trouble with the spacing for a field on a form. The issue doesn't show in draft mode.

Any recommendations? Thanks!
Hello,
I am having trouble with the spacing for a field on a form. The issue doesn't show in draft mode.

Any recommendations? Thanks!
It’s right here in your Custom CSS, you’ve unfloated the radio button list:
.mktoForm .mktoRadioList {
float: none;
}
For that particular field, the button is narrow enough that it fits on the line above (because the label itself is floated left).
You likely want to clear the label float as well:
.mktoForm .mktoRadioList {
float: none;
clear: both;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.