Form Layout: How can I remove the highlight effect and set the text color to other than white?

  • Catherine Azizi
    Asked on September 5, 2016 at 9:04 PM

    - When a form field is selected by the cursor, it turns white and makes the text being typed invisible, which is not a good user interface.

     

  • Kevin Support Team Lead
    Replied on September 5, 2016 at 9:07 PM

    The current text color of your text boxes is white, this is why you cannot see what you're typing, to set them to black and remove the highlight effect when the field is active, pelase inject this CSS code to your form: 

    .form-textbox, .form-textarea{

       color: #000000;

    }

     

    .form-line-active{

        background-color: transparent !important;

    }

    This guide will help you to inject it: How-to-Inject-Custom-CSS-Codes

    If you have any question, please let us know.