When setting up the left side panel, I experimented with some code that ended up working as expected.
<!--First row starts here-->
<div class="row" style="padding-bottom:8px;margin-left:-350px;font-family:arial;font-size:15px;">
<div class="col-sm-2 required;">
<label>
col 1
</label>
</div>
<div class="col-md-4 required">
@Html.TextBoxFor(c => c.FormCode, new { id = "formcode", @class = "txtboxclass1" })
</div>
</div>
<!--First row ends here-->
I then encountered an issue trying to align Expand 1 and Expand 2 columns properly. Despite modifying the code as shown below, clicking the expand button caused the left side controls to shift downward. How can I correct this?
<!--First row starts here-->
<div class="row" style="padding-bottom:8px;margin-left:-350px;font-family:arial;font-size:15px;">
<div class="col-sm-2 required;">
<label>
col 1
</label>
</div>
<div class="col-md-4 required">
@Html.TextBoxFor(c => c.FormCode, new { id = "formcode", @class = "txtboxclass1" })
</div>
<div id="dvAccordian">
<div class="col-sm-2 required">
<a href="#">Template Code</a>
</div>
<div class="col-md-4 required">
<aClick Here</a>
</div>
</div>
</div>
<!--First row ends here-->