k4h
k4h

Reputation: 117

Twitter-bootstrap fixed layout

I am trying to make a twitter-bootstrap layout, that has fixed side bar and content.

However, when width of browser window is reduced, content goes under sidebar.

Upvotes: 0

Views: 986

Answers (1)

Sherbrow
Sherbrow

Reputation: 17379

The responsive layout is responsible for most disposition shifting resulting from window resizing. It is activated by default in the examples provided by the documentation.

You can disable the responsiveness of the layout by not including bootstrap-responsive.css as seen in the docs.

Note : the fluid grid has nothing to do with responsiveness. Both can be used independently.

Upvotes: 2

Related Questions