M.V.
M.V.

Reputation: 1672

How to fix responsive CSS on Bootstrap 3?

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

Answers (1)

Maciej Gurban
Maciej Gurban

Reputation: 5729

Find

<div class="clearfix visible-sm"></div>

and replace it with

<div class="clearfix visible-xs visible-sm"></div>

Upvotes: 1

Related Questions