I don't know how to explain it. so just check out below image.
I am using charishma Admin theme. Downloaded from here: https://github.com/usmanhalalit/charisma
I am using jquery.validate.1.11.1.js. Your any effort will be appreciated. Thanks in advance..!! Update:
I have seen the added element is label. It seems proper for textbox and select but for checkbox and radio it shown like the abaove as the size of this elements are smaller than textbox and select. see below code is generated:
<div class="control-group">
<label class="control-label">Checkboxes</label>
<div class="controls">
<label class="checkbox inline">
<div class="checker" id="uniform-tnc">
<span>
<input type="checkbox" value="option1" name="tnc" id="tnc" style="opacity: 0;" class="alert-error">
<label for="tnc" class="alert-error">Agree to our terms and conditions to register with us.</label>
</span>
</div> Option 1
</label>
</div>
</div>
This is fine for all other input type except checkbox and radio. For these It should be like below :
<div class="control-group">
<label class="control-label">Checkboxes</label>
<div class="controls">
<label class="checkbox inline">
<div class="checker" id="uniform-tnc">
<span>
<input type="checkbox" value="option1" name="tnc" id="tnc" style="opacity: 0;" class="alert-error">
</span>
</div> Option 1
<label for="tnc" class="alert-error">Agree to our terms and conditions to register with us.</label>
</label>
</div>
</div>