I've already taken a look into these solutions (same problem):
But none , seem to work for me apart from the ugly hack of
body { overflow-x: hidden;}
I just downloaded the current bootstrap distribution from their website (v3.3.4).It also has this .container-fluid
class which is supposed to be the fix for this problem. However, I'm still having this issue and wanted to know if others have also faced this problem. I'm getting this issue in localhost ( using MAMP ). I haven't tried production server yet as I'm confused about why this problem still persists. I decided to post this question as the previous issues were raised a couple of years ago.
My code setup is an extremely basic one (I've used container
class too) :
<div class="container-fluid">
<div class="row">
<div class="col-md-3 column">
</div>
<div class="col-md-6 column">
</div>
<div class="col-md-3 column">
</div>
</div>
</div>