Bootstrap Layout - Remove Reaction

I am trying to create a fixed layout and use Bootstrap for mainly Javascript plugins. But Layout breaks when I try to resize below 1000px.

http://mink7.com/projects/test/index.html

enter image description here

enter image description here

+3
source share
1 answer

The loaded CSS code that you included, I believe there are responses in it. If you look at the Bootstraps site, they include both versions in the 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 easiest way to do this would be to include a file boostrap.css, notbootstrap-responsive.css

+3
source

All Articles