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.

Radio Buttons (and checkboxes) only render in Firefox

  1. Russ Tyndall
    Member

    I am unable to get my checkboxes and radio buttons to render on all browsers. They show up in firefox but not in any others that I have tried (chrome & safari). I would assume explorer has the same issues but I don't have that browser on my Mac. I have a feeling its shoddy CSS from the theme developer, who offers no support, as I have had more problems with this theme than any other I have ever used.

    Any help would be appreciated. Page can be viewed here:

    http://addisonsarmy.org/support/volunteer/

    Posted 11 years ago on Wednesday December 5, 2012 | Permalink
  2. It's due to this CSS rule in your theme:

    [css]
    input, textarea {
    font-family: "Helvetica Neue", helvetica, sans-serif;
    font-size: 13px;
    outline: none;
    -webkit-appearance: none;
    -webkit-focus-ring-color: none
     -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DDD;
    }

    See the -webkit-appearance: none; That's what's throwing it off.

    Posted 11 years ago on Wednesday December 5, 2012 | Permalink