I tried to create a simple webform and the display is wrong. the checkboxes apear AFTER the text not before as they should

www.findthekey.ca/reg

Hi Daniel Finder,

We are sorry for the issue, please add following css to custom.less file under lessc folder to resolve the issue

.webform-client-form .form-item{
            clear:both;
}
.webform-client-form label.option{
            float:none;
}

Thanks!

thanks, can you be more specific than that. where do I find that file? is it in sites/all/themes/jollyness ? because I cannot find custom.less there?

I found a file like that in sites/all/themes/jollyness_sub... added the code but doesn't seem to fix the issue. please advise. www.findthekey.ca/reg

please advise... more comments on the main thread issue.

Hi.

I'm sorry for late reply.

You can add the custom css in style.less file under sites/all/themes/jollyness/lessc folder

Thanks.

I added the code to style.less as instructed. doesn't seem to have any effect.

Hi. Please try to add !important property after float:none as below

.webform-client-form .form-item{
            clear:both;
}
.webform-client-form label.option{
            float:none !important;
}

Thanks!