Set different colour for Submit button and Clear Form button.

  • bhds
    Asked on November 20, 2015 at 3:01 PM

    Is it possible to choose different colours for the Submit button and the Clear Form button?  I would like to make the Submit button green and the Clear Form button red, but I can't see how to do this.  It it possible with some custom CSS?

    Thank you.

  • victor
    Replied on November 20, 2015 at 4:08 PM

    Can you please inject the following CSS code

    .form-submit-reset {

        background: #016ABC;

        color: #fff;

    }

     

    .form-submit-reset:hover {

        background: #B9DFFF;

        color: #fff;

    }

    .form-submit-button {

        background: #B9DFFF;

        color: #fff;

    }

     

    .form-submit-button:hover {

        background: #016ABC;

        color: #fff;

    }

    This will modify the background color of the submit and reset buttons. For more information on how to modify this, you may review our users guide:

    http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Please let us know if this helps.

  • bhds
    Replied on November 23, 2015 at 10:56 AM

    Thank you.  That worked very well, although I had to set the button style to None in order to get this to work.