- This topic has 1 reply, 2 voices, and was last updated 5 years, 9 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support › Forums › Sunshine Pro Theme › Gravity Forms checkbox fix not working
Tagged: gravity forms
I have just installed Sunshine and found that my GF form’s checkboxes and radio boxes do not display correctly. I have tried the fix you suggested on another thread – this one:
input[type=”checkbox”] {
-webkit-appearance: checkbox;
box-sizing: border-box;
}
but it has no effect.
Can you help?
Try following code
/* Radio button fix for Gravity Forms */
.gform_wrapper .gfield input[type=radio] {
-webkit-appearance: radio !important;
}
.gform_wrapper .gfield input[type=checkbox] {
-webkit-appearance: checkbox !important;
}