How to change the font color of the add & remove labels in the configurable list widget

  • csnow
    Asked on November 10, 2017 at 8:10 AM

    I was able to change the headers to the font color of my form. I have not been able to figure out how to change the Add label (which I called Next) and the Remove Label to match the color and fonts of my form.

  • aubreybourke
    Replied on November 10, 2017 at 9:32 AM

    You can use this CSS code:

    button{
    color: red !important;
    }

    How to Inject CSS Codes to Widgets  

    For example, here I have changed the button text colour to red:

    1510324261Microsoft Edge 10 11 2017 14 2 Screenshot 10

  • csnow
    Replied on November 10, 2017 at 9:38 AM

    Thank you!