Hi Guys I am using the wicket-bootstrap3 FormGroup and provide a Model for the in built Label that gets added. My Problem is how to apply the relevant formatting and spacing on the item. So according to the bootstrap3 examples my HTML should look like the following resulting markup.
<div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">Email</label> <div class="col-lg-10"> <input type="email" class="form-control" id="inputEmail1" placeholder="Email"> </div> </div> Where label should have the class col-lg-2 or similar col definition hw could I add this. Thanks David