How do I change color of radio buttons?

  • mpitof
    Asked on June 23, 2016 at 10:43 AM

    Hi

    How do I change color of the radio buttons and checkboxes in this form?

    As you can see they are white on a bright background. They should be for example the same color as the text, #424242

    Mathias

    Jotform Thread 867902 Screenshot
  • Welvin Support Team Lead
    Replied on June 23, 2016 at 12:08 PM

    You are using a custom style for the radio button. You can override the colors by injecting the following custom CSS codes to your form:

    .form-radio-item:not(#foo) label:before {

        border: 2px solid #424242 !important;

    }

    .form-radio-item:not(#foo) label:after {

        background-color: #424242 !important;

    }

     

    Here's how to inject the CSS to your form: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Let us know if you need any further assistance. 

  • stormingrobots
    Replied on April 24, 2017 at 12:08 PM

    thank you!