Reputation: 1170
Since Bootstrap 3 has no seperate files for responsive and standards. So how can I easily disable the responsive features?
Upvotes: 0
Views: 63
Reputation: 5156
Steps to disable page responsiveness
<meta>
mentioned in the CSS docswidth
on the .container
for each grid tier with a single width, for example width: 970px !important;
Be sure that this comes after the default Bootstrap CSS. You can optionally avoid the !important
with media queries or some selector-fu..col-xs-*
classes in addition to, or in place of, the medium/large ones. Don't worry, the extra-small device grid scales to all resolutions.Hope this may useful
For Reference use this LINK
Upvotes: 4