Remove the highlights of the fields

  • JORGE_GARCIA
    Asked on December 15, 2015 at 8:27 AM

    Hi. I've done various forms and now I want to remove the highlights of the fields. I can do with CSS? Thanks in advance.

  • Jan
    Replied on December 15, 2015 at 10:15 AM

    Are you referring to the text box fields wherein it will be outlined or highlighted when you clicked it?

    If yes, then please insert these custom CSS code on your form.

    .form-textbox {
    outline : none !important;
    }

    .form-textarea {
    outline : none !important;
    }

    .form-line-active input:focus {
    border: 0 !important;
    box-shadow: 0 0 0!important;
    }

    .form-line-active textarea:focus {
    border: 0 !important;
    box-shadow: 0 0 0!important;
    }

    Here's a guide on how to inject custom CSS. Hope this helps. Let us know if you need any help. Thank you.