How to remove border from the text box field?

  • prowrestlingtees
    Asked on May 4, 2016 at 6:16 PM

    What is the best way to remove the border from text boxes?

  • Nik_C
    Replied on May 4, 2016 at 6:56 PM

    You can do that with injecting this CSS:

    #input_3{

    border: none!important;

    }

    Where #input_3 is the ID of the text field. To check what is the name of your field you can do this:

    How to remove border from the text box field? Image 1 Screenshot 30

     

    How to remove border from the text box field? Image 2 Screenshot 41

    border:none; will remove the border from the field.

    Hope it helps.

    Please let me know if you have further questions.