aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-11-21 15:27:08 -0800
committerMark Otto <[email protected]>2014-11-21 15:27:08 -0800
commit2ef7b50a1f4a83275eea04f13b7aa4ee219d6e04 (patch)
tree19a91f000c7b05dfea4a0089599af27c3a6f1d99 /docs
parent3151f502672801386acc6d6f37d2e54021bcfb10 (diff)
downloadbootstrap-2ef7b50a1f4a83275eea04f13b7aa4ee219d6e04.tar.xz
bootstrap-2ef7b50a1f4a83275eea04f13b7aa4ee219d6e04.zip
remove disable responsive docs section
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started/disable-responsive.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/getting-started/disable-responsive.md b/docs/getting-started/disable-responsive.md
deleted file mode 100644
index 33b3516f3..000000000
--- a/docs/getting-started/disable-responsive.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-layout: page
-title: Disable responsiveness
----
-
-Bootstrap automatically adapts your pages for various screen sizes. Here's how to disable this feature so your page works like in [this non-responsive example](../examples/non-responsive/).
-
-- Omit the viewport `<meta>`
-- Override the `width` 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.
-- If using navbars, remove all navbar collapsing and expanding behavior.
-- For grid layouts, use `.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.
-
-You'll still need Respond.js for IE8 (since our media queries are still there and need to be processed). This disables the "mobile site" aspects of Bootstrap.