I'm trying to prevent the left div from scrolling. I've set its position to fixed but now, it is overlapping with the right one. What can I do? I've tried position: relative and absolute to the right div but nothing happens.
<div class="container-fluid">
<div class="row">
<div class="col-sm-7">
</div>
<div class="col-sm-5">
<div id="googleMap"></div>
</div>
</div>
</div>