Stylize jQueryValidation errors
I have the following part of a form code:
<div class="form-group">
<div class="input-group">
<input class="form-control" type="email" name="email" placeholder="Your e-mail">
<span class="input-group-addon">
<i class="glyphicon glyphicon-envelope"></i>
</span>
</div>
</div>
When there is some error the formatting of jQueryValidation messes up my layout.
I needed the field error to appear in a specific place, so the design would not be compromised.
Like that:
<div class="form-group">
<div class="input-group">
<input class="form-control" type="email" name="email" placeholder="Your e-mail">
<span class="input-group-addon">
<i class="glyphicon glyphicon-envelope"> </i>
</span>
</div>
<!-- Error would be shown here -->
<em class ="error help-block"> HERE </em>
</div>
Any tips on how to proceed?
Thank you very much in advance.
--
Atencionsamente
Juscelino BarĂ£o