How do I make the button on a configurable list widget the same colour as the other buttons on the form?

  • barcodeproducts
    Asked on March 27, 2017 at 8:54 AM

    My form has a configurable list with a grey button on it.  How can I change that to a green button, the same colour as the other buttons on the form?

  • David JotForm Support
    Replied on March 27, 2017 at 11:13 AM

    Click on the widgets wizard button (small wand like icon in the right corner) and add code as mentioned above:

    with button.add for Add button and button.remove for remove button. 

    You will need to add it to Custom CSS field:

    How do I make the button on a configurable list widget the same colour as the other buttons on the form? Image 1 Screenshot 20

    For a green background, add the following:

    button.add, button.remove {
    color: #ffffff;
    background: green;
    }

    The color attribute will change the text/+ symbol color, background will change the background color.