Is there a way to troubleshoot issues with Bootstrap col?
I attempted the following solution, but it's not yielding the desired outcome:
<div class="row">
<div class="col-md-6">Content goes here...</div>
<div class="col-md-6" style=" position: fixed">Content goes here...</div>
</div>
fixed
positioning causes the col to act like an absolute position.
Also, I'm wondering how I can deactivate a fixed position when the page is scrolled down 400 pixels from the top.