Take a look at this code snippet:
<div class="row">
<div class="col-lg-3">
<div class="ava-block">
</div>
</div>
<div class="col-lg-6">
...
</div>
<div class="col-lg-3">
....
</div>
</div>
Do you know how to hide the first col-lg-3
on mobile and change the col-lg-6
to col-lg-9
? I want to hide the col-lg-3
on mobile devices without affecting the size of the col-lg-6
. If I simply hide it using CSS and media queries, the col-lg-6
doesn't expand to fill the space.