Reputation: 54949
I am trying to create a fixed layout and using Bootstrap for mainly the Javascript Plugins. But the Layout breaks when i try to resize below the 1000px.
Upvotes: 4
Views: 6447
Reputation: 4901
The Bootstrap CSS you have included I believe has the responsive elements in it. If you look at Bootstraps website, they include both versions in their source code.
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
The simplest way to do it would just include the boostrap.css
file and not bootstrap-responsive.css
Upvotes: 4