Custom CSS: Change Button Color

  • yfrigi
    Asked on June 4, 2020 at 9:59 AM

    Hello,

    I want to change the color of the button in this form from green #b2d640 to blue #2e9dd4.

    I went into the css and I tried to change it but I guess I did it wrong because it's still green. 

    I also tried the advanced designer and could get the right button color but all of the alignments that were there disappeared and I didn't like the way the form looked.


    Please advise!


    Jotform Thread 2367959 Screenshot
  • Jovanne JotForm Support
    Replied on June 4, 2020 at 10:26 AM

    Hi, thank you for reaching out to us.


    You can insert this custom CSS:

    .form-submit-button{

      background-color: #2e9dd4 !important;}



    Here is a guide on how to inject custom CSS codesHow-to-Inject-Custom-CSS-Codes,

    Let us know if you need further assistance.

  • yfrigi
    Replied on June 4, 2020 at 11:28 AM

    Thanks.  I did that and it did change the color of the button.  However, it seems to still have a hint of a border in green.  Please advise.

  • Jovanne JotForm Support
    Replied on June 4, 2020 at 11:35 AM

    Hi, could you please update the CSS code:

    .form-submit-button{


      background-color: #2e9dd4 !important;


     border-color: #2e9dd4 !important;

    }


    Let us know if this works for you.

     

  • yfrigi
    Replied on June 4, 2020 at 11:52 AM

    No.  The green border persists.  :(

  • Jovanne JotForm Support
    Replied on June 4, 2020 at 11:56 AM

    Hi, could you please update the CSS code again:

    .form-all .form-submit-button{

      background-color: #2e9dd4 !important;

      border-color: #2e9dd4 !important;

    }

    Let us know if this works for you.

  • yfrigi
    Replied on June 4, 2020 at 12:07 PM

    That did it!  Thanks!  Is there a way to make the borders rounded?

  • Jovanne JotForm Support
    Replied on June 4, 2020 at 12:13 PM

    Hi, you can update the CSS code to


    .form-all .form-submit-button {

        background-color: #2e9dd4 !important;

        border-color: #2e9dd4 !important;

        border-radius: 30px !important;

    }


    Let us know if this works for you.

     
  • yfrigi
    Replied on June 4, 2020 at 12:45 PM

    Perfect!  Thanks so much!