The current controls are structured as follows:
<div class="form-horizontal">
<div class="form-group ">
@Html.LabelFor(model => model.TribeId, @Resource.TribeName, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-4">
@Html.DropDownList("TribeId", null, @Resource.SelectTribe, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.TribeId, "", new { @class = "text-danger" })
</div>
<div class="col-lef-1">
<input type="checkbox" id="chkTribe" name="" value="">
<label>@Resource.Skip</label>
</div>
</div>
</div>
As seen in the picture, https://i.sstatic.net/O4aod.png
All dropdowns display the label and dropdown fine, but I wish to position the checkbox alongside its related dropdown element.
I welcome your suggestions.
Thank you