When I view the file and check box, currently the check box is positioned above the browse control. I want it to be on the left side of it instead. How can I make this adjustment?
<div class="form-group">
@Html.LabelFor(model => model.Cert, new { @class = "control-label col-md-2" })
<div class="col-md-10">
@if (Model.Certificate !=null)
{
<input type="checkbox" checked="checked" disabled="disabled" />
}
else
{
<input type="checkbox" disabled="disabled" />
}
<input type="file" name=ficateFile />
</div>
</div>