PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Checkboxes Not Displaying

  1. 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/

    Posted 10 years ago on Thursday June 27, 2013 | Permalink
  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;
    }
    Posted 10 years ago on Thursday June 27, 2013 | Permalink
  3. Wow, that was FAST! Thank you so much, Rob!

    Posted 10 years ago on Thursday June 27, 2013 | Permalink
  4. Richard Vav
    Administrator

    Edit: should have refreshed the page after I nipped away from my desk before replying

    Posted 10 years ago on Thursday June 27, 2013 | Permalink
  5. Glad to help!

    Posted 10 years ago on Thursday June 27, 2013 | Permalink

This topic has been resolved and has been closed to new replies.