Reputation: 1672
I just started using Bootstrap 3 and I have problem with responsive view. Everything works great but small screen.
Side bar extends to whole page no matter what is inside.
Here is example I just wrote. http://www.bootply.com/HEGU2LjD2J (see mobile view)
Upvotes: 0
Views: 43
Reputation: 5729
Find
<div class="clearfix visible-sm"></div>
and replace it with
<div class="clearfix visible-xs visible-sm"></div>
Upvotes: 1