How to remove the light blue outline in the field?

  • ekoloskov
    Asked on September 26, 2016 at 1:01 PM

    How to remove the light blue outline in the field? Image 1 Screenshot 20

  • Jan
    Replied on September 26, 2016 at 2:26 PM

    This outline is only visible in Google Chrome. Please insert this custom CSS code:

    input:focus, textarea:focus, select:focus {
    outline-offset: 0px !important;
    outline: none !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes.

    Hope that helps. Thank you.