Hello @amdev1
I’ve tested your form, and it does not include any checkbox field. So, I guess you are referring to the radio buttons fields, and they are visible.
Best regards.
Thread Starter
AmDev1
(@amdev1)
Hi there
You are right of course, they are radio buttons. But not visible….. there’s just a thin rectangular box. Can I send you a screenshot somehow?
Thanks
Hello @amdev1
You are applying appearance: none; to every input tag that is not a checkbox or textarea. You should exclude the radio buttons from this rule too. An alternative would be to enter the style definition below through the “Customize Form Design” attribute in the “Form Settings” tab:
#fbuilder input[type="radio"]{appearance: radio !important; width: 24px !important; height: 24px;}
Best regards.
Thread Starter
AmDev1
(@amdev1)
Superb – thank you!
One other thing, the calculator is quite slow on my site (which is very fast on pages without a calculator). Is there anything I can do to speed it up?
Thanks in advance.
Hello @amdev1
I recommend that you optimize the form. Each time the value of a field changes, the plugin searches for all the equations affected by the field and evaluates them. However, as the values of the calculated fields vary (as a result of the evaluation of the equations), the plugin repeats the process several times, until no field changes its value.
Knowing how the plugin works, you must decide whether 208 calculated fields are required in the form.
Best regards.