That's how I want the Phone and Extension to align in the form
That's what I wrote for the Phone and Extension row:
<div class="row form-group"> <label class="control-label col-md-2" for="phone">Phone</label> <div class="col-md-6"> <input class="col-md-5" id="AdminPhone" name="AdminPhone" type="text" value="" placeholder="(999) 999-9999"> <div class="form-group col-md-7 pull-right"> <label class="control-label col-md-1" style="text-align: right" for="AdminExt">Ext</label> <input class="col-md-6 pull-right" id="AdminExt" name="AdminExt" type="text" value="" placeholder="1234"> </div> </div> </div> And that's how it start to look like
or like this:
I don't know how else should I have structured it to work right?
Also for example the Email section above it which works fine is like this:
<div class="row form-group"> <label class="control-label col-md-2" for="Email">Email</label> <div class="col-md-6"> <input id="AdminEmail" name="AdminEmail" type="text" value="" style="width: 100%" placeholder="Email"> <span class="glyphicon glyphicon-envelope form-control-feedback" style="right: 10px; line-height: 27px; color: lightblue"></span> </div> <div class="col-md-4"> <div> <input class="checkbox-inline" id="ShowAdminPhone" name="ShowAdminPhone" type="checkbox" value="true"><input name="ShowAdminPhone" type="hidden" value="false"> <label class="control-label" for="Show_Admin_phone">Show Admin phone</label> </div> </div> </div> 

