Reputation: 1044
Presently i am working on bootstrap 3.0 for developing the pages..
I am using the cols-md-* elements for grid view.
While i am trying to disable the responsiveness but it didn't work..
i google it but i didn't found any solution..
I disabled the responsiveness by giving container width to static width (Here my width is 1140px)...
And i go through the Bootstrap link but no luck..
Here is my website (http://lumigren.com/hyd/)..
Upvotes: 3
Views: 2576
Reputation: 1170
Steps to disable page responsiveness
Hope this may useful.
For Reference use this LINK
Upvotes: 1
Reputation: 34652
Use all the instructions for disabling http://getbootstrap.com/getting-started/#disable-responsive except for adjusting your html to use col-xs.
Then in your CSS move the col-md-* columns styles to outside the 992px min width to around the same location as the col-xs-* OR, probably better, rename all of the col-xs- to col-md- IN your css. Make a back up first. This only works if you were using col-md-* only in your html.
Upvotes: 1