aboutsummaryrefslogtreecommitdiff
path: root/getting-started.html
diff options
context:
space:
mode:
Diffstat (limited to 'getting-started.html')
-rw-r--r--getting-started.html14
1 files changed, 12 insertions, 2 deletions
diff --git a/getting-started.html b/getting-started.html
index ea5f96e61..68dfedab4 100644
--- a/getting-started.html
+++ b/getting-started.html
@@ -234,6 +234,13 @@ bootstrap/
<h4>Carousel</h4>
<p>Customize the navbar and carousel, then add some new components.</p>
</div>
+ <div class="col-xs-6 col-md-4">
+ <a class="thumbnail" href="../examples/non-responsive/">
+ <img src="../examples/screenshots/non-responsive.jpg" alt="">
+ </a>
+ <h4>Non-responsive Bootstrap</h4>
+ <p>Easily disable the responsiveness of Bootstrap <a href="../getting-started/#disable-responsive">per our docs</a>.</p>
+ </div>
</div>
@@ -253,7 +260,7 @@ bootstrap/
<p>To disable responsive features, follow these steps. See it in action in the modified template below.</p>
<ol>
<li>Remove (or just don't add) the viewport <code>&lt;meta&gt;</code> mentioned in <a href="../css/#overview-mobile">the CSS docs</a></li>
- <li>Force a single <code>max-width</code> on the <code>.container</code> (e.g., <code>.container { max-width: 940px; }</code>). Be sure that this comes after the default Bootstrap CSS; otherwise, you'll need <code>!important</code>.</li>
+ <li>Remove the <code>max-width</code> on the <code>.container</code> for all grid tiers with <code>.container { max-width: none !important; }</code> and set a regular width like <code>width: 970px;</code>. Be sure that this comes after the default Bootstrap CSS. You can optionally avoid the <code>!important</code> with media queries or some selector-fu.</li>
<li>For grid layouts, make use of <code>.col-xs-*</code> classes in addition to or in place of the medium/large ones. Don't worry, the extra-small device grid scales up to all resolutions, so you're set there.</li>
</ol>
<p>You'll still need respond.js for IE8 (since our media queries are still there and need to be picked up). This just disables the "mobile site" of Bootstrap.</p>
@@ -273,7 +280,10 @@ bootstrap/
<!-- 2. Add our custom CSS to set the container's fixed width -->
<style>
- .container { max-width: 940px; }
+ .container {
+ max-width: none !important;
+ width: 970px;
+ }
</style>
</head>
<body>