jQuery validate get the error message below the textbox / input element

jquery

Solution

Just add `display: block;` to label.error:

label.error { 
   float: none; color: red; 
   padding-left: .5em;
   vertical-align: top; 
   display: block;
}​

Problem

http://jsfiddle.net/msbUM/ How do I get the error message below the textbox / input element?

Original source