Form Acceptance? How to set it?

How to set an acceptance checkbox for a form? Like “You need to accept privacy policy to send this form” there is a specific option like elementor was providing or we should use checkbox and tweak it?

Thanks

why don’t you like checkbox field?

yeah adding default checkbox field problem isnt it it doesn’t stay on the left side of the option.

it is a problem really.

I solve it like this

you change the selectors for your form

[for="form-field-liyjju-0"]{
  font-size:13px !important;
  width:90% !important;
  float:left;
}

#form-field-liyjju-0{
  float:left;
  position:relative;
  top:3px;
  width:20px;
  height:20px;
  margin-right:10px;

}

Understood. Yes, you are right. Need a field that can be styled correctly.

try

ul.options-wrapper[aria-labelledby='label-ywstwt'] li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
}

Thanks a lot for sharing guys!