How do you change the colour of the Theme in the Radio Widget?

  • mgcaledonian13
    Asked on July 16, 2018 at 3:13 AM

    How do you change the colour of the Theme in the Radio Widget.

    1531725124Radio Widget 2 Screenshot 10

    https://form.jotform.com/81952564154966

  • Welvin Support Team Lead
    Replied on July 16, 2018 at 7:16 AM

    Inject the following custom CSS codes in the widget:

    li.checked .black-radio, li.checked .orange-radio {

        background-color: #00BCD4;

        border-radius: 100%;

        border: 3px solid #d5eef3;

    }

    .orange-radio {

        width: 23px;

        height: 23px;

        background: #fff;

        border-radius: 100%;

        border: 3px solid #d5eef3;

    }

    Please follow the steps here to inject the codes: https://www.jotform.com/help/428-How-to-Inject-CSS-Codes-to-Widgets

    The output would be this:

    How do you change the colour of the Theme in the Radio Widget? Image 1 Screenshot 20

  • mgcaledonian13
    Replied on July 17, 2018 at 6:35 PM

    Thanks a lot, solved the issue.