I want to view the text response of jQuery validate in a new line, not inline with the input elements.
How I can achieve it?
Code: http://jsfiddle.net/5gVHx/2/
Press NEXT, you will see the validation response line in the same line as the input, i want it in a new line
Just add display: block;
to your label.error
selector.
label.error {
float: none;
color: red;
padding-left: .5em;
vertical-align: top;
display: block;
}
http://jsfiddle.net/5gVHx/5/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With