Please help...how can I change the color of the blue border that appears when a field is clicked?

  • hannahgatner
    Asked on March 28, 2015 at 7:09 PM

    Please help...how can I change the color of the blue border that appears when a field is clicked?

    I once had the code to inject into the CSS but I have now lost it. It was something like:

     

    input {

    color: #69539C !important;

    }

     

  • Welvin Support Team Lead
    Replied on March 29, 2015 at 8:49 AM

    Hi,

    The following are the custom CSS codes for the border color of the active fields:

    .form-textbox:focus, .form-textarea:focus {

      outline: 0;

      border-color: #69539C;

    }

    Just simply change #69539C to any color you want. Note that these codes are already added in your form so kindly check:

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

    Thank you!