I have two columns (one of which can be hidden) and try to resize the second column, when the first is hidden.
<div class="row"> <div class="col-sm-3 col-lg-2 ms-dialogHidden"> content1 </div> <div class="col-sm-9 col-lg-10"> content2 </div> </div> When i hide the first, I'd like to resize the second one like this:
<div class="row"> <div class="col-sm-3 col-lg-2 ms-dialogHidden"> content1 </div> <div class="col-sm-12 col-lg-12"> content2 </div> </div> Can anyone help me?
Thanks!