Class overlapping validation red border

0
Hello everyone! I have this happening right now, as I have a classe for the required field that gives the input a blue border and then the validation makes all of the border red, leaving the bottom blue. I want the border to be all red. Any idea on how to achieve this?
asked
1 answers
0

Hi Helga,

There is a form control class for validation error which you can target to make the button border also red.  You can add your own class in addition to the class mentioned below to target specific inputs.

 

.has-error .form-control {

border-bottom: 2px solid red !important;

}

 

Make sure to give the border a width and also mark that css as important.

answered