I know this is probably something silly, but checkboxes don't display on my site. The values do, but not the actual boxes. http://oldelibertyins.com/insurance-products/auto-insurance-2/
I know this is probably something silly, but checkboxes don't display on my site. The values do, but not the actual boxes. http://oldelibertyins.com/insurance-products/auto-insurance-2/
For some reason your theme decided to block all inputs out for Chrome and Safari (webkit):
[css]
input, textarea, button {
outline: none!important;
background: none;
border-radius: 0;
box-shadow: none!important;
-webkit-appearance: none!important;
}
Just place this CSS snippet in your theme's stylesheet (or wherever you are instructed to place custom CSS at the theme level).
[css]
.gform_wrapper ul.gfield_checkbox li input[type=checkbox] {
-webkit-appearance: checkbox!important;
}
.gform_wrapper ul.gfield_radio li input[type=radio] {
-webkit-appearance: radio!important;
}
Wow, that was FAST! Thank you so much, Rob!
Edit: should have refreshed the page after I nipped away from my desk before replying
Glad to help!