How to I change the form border color?

  • flatironrepairs
    Asked on July 15, 2016 at 6:18 AM

    Good day. How to I change the form border color?

    Got this code in:

    .form-all, .form-textarea {

    border: 1px solid green !important;

    }

    How to I change the form border color? Image 1 Screenshot 20

    What to remove the orange border or make it green.

  • Support_Management Jotform Support
    Replied on July 15, 2016 at 8:15 AM

    Good day to you too! Try to inject these CSS Codes [GUIDE: How-to-Inject-Custom-CSS-Codes]

    To remove the border:

    .form-all {

       box-shadow: none !important;

    }

    RESULT:

    How to I change the form border color? Image 1 Screenshot 30

    To make it green:

    .form-all {

       box-shadow: 0 0 0 1px #fff, 0 0 0 2px green !important;

    }

    RESULT:

    How to I change the form border color? Image 2 Screenshot 41

    Hope this helps!

  • flatironrepairs
    Replied on July 15, 2016 at 9:25 AM

    Awesome! Thank you!