-
prowrestlingteesAsked on May 4, 2016 at 6:16 PM
What is the best way to remove the border from text boxes?
-
Nik_CReplied 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:
border:none; will remove the border from the field.
Hope it helps.
Please let me know if you have further questions.