Hi there. I am trying to get my gravity forms checkbox to have the checkbox on the left of the label and in a row. Even though I am using gf_list_3col Custom CSS Class I am still getting some challenges as in the image. This is happening in all forms with checkboxes, including consent ones.
Hello @user63b7646d43313421
Somewhere of your CSS file has a css where input width is 100 % which is the main issue.
If you put following CSS in your theme, hope problem will be solved.
input[type=checkbox] {
width: auto;
}
You can put this CSS from
Dashboard → Appearance → Customize → Additional CSS
Don’t forget to hit “Publish” after pasting the CSS