Okay, so I have this HTML layout which works on rows and columns. Something like this:
<div class="row">
<div class="col-sm-2 col-lg-2 col-md-2">
Some Code!
</div>
<div class="col-sm-10 col-lg-10 col-md-10">
Some Code!
</div>
</div>
In this, I want the first column to be fixed while the other one to freely scrollable. So I set the CSS property position to fixed. And this works just fine. But as soon as I try out the responsive design mode, The first column is completely overlapped by the second one. Any ideas as to how to solve this problem?