Unable to change text color

  • myaustinlux
    Asked on August 4, 2017 at 1:03 PM

    We have a form with the minimal radio button widget in it on the question "Would you like us to send your report to your REALTOR? , and we want ALL the font to be white. We can change the question font just fine, but the answer Yes/No font defaults to black. Also, the answer "circles" area extremely close together and we would like them with more padding. Cannot work out a fix for this!

  • aubreybourke
    Replied on August 4, 2017 at 1:24 PM

    The reason for this is that the radio buttons for the "Would you like us to send your report to your REALTOR?" question are using the Minimal Radio Buttons widget instead of a plain single choice field.

    I have cloned your form and modified it.

    You can see it working with a standard single choice field:

    https://form.jotformpro.com/72154856404962

     

  • myaustinlux
    Replied on August 4, 2017 at 2:45 PM

    Right - I could do the same thing myself very easily. However this form is attached to multiple webhooks and I don't want to have to redo those if I can just change CSS code to make the font white. Are you saying it's not possible?

  • aubreybourke
    Replied on August 4, 2017 at 3:40 PM

    Add this CSS code into the widget:

    li{
    color: white;
    }

     

    Unable to change text color Image 1 Screenshot 20

  • myaustinlux
    Replied on August 4, 2017 at 7:32 PM

    Thanks!