How to change color of input field box of configurable list widget

  • csnow
    Asked on September 19, 2016 at 12:59 PM

    I'd like to input fields of the configurable list widget and the Next Name box in my form to be the same color as the input fields in the form.

  • Mike
    Replied on September 19, 2016 at 2:43 PM

    In order to do this, please add the next CSS to the Custom CSS tab of your Configurable list widget.

    input {
    background-color: #cccccc;
    }

    How to change color of input field box of configurable list widget Image 1 Screenshot 20

    If you need any further assistance, please let us know.

  • csnow
    Replied on September 19, 2016 at 10:58 PM

    Thanks - that did it.  Now, do you know how to change the background color of the add button (I call it Next Name) to the same color?

  • David JotForm Support Manager
    Replied on September 20, 2016 at 12:09 AM

    Add the following code in the "Custom CSS" tab of your Configurable List widget:

    .add{

        background: #cccccc !important;

    }

    Let us know if you need more help.