How can I add different colors for submit and reset buttons?

  • VinilBrasil
    Asked on January 17, 2018 at 3:17 PM

    How can I change the color of only one button, ie: submit button green and reset buttom red?


  • Sabbir
    Replied on January 17, 2018 at 3:26 PM

    You can add following CSS code to add different colors to your submit and reset buttons.

    #input_125
    {
      background: green;
    }
    #input_reset_125
    {

      background: red;

    }

    Follow this link to know how you can inject custom CSS in your form:

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

    If you have any further query, please let us know.

  • VinilBrasil
    Replied on January 18, 2018 at 7:35 AM

    It´s work! Thanks so much.