aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/getting-started/disabling-responsiveness.html
diff options
context:
space:
mode:
authorSteven Black <[email protected]>2015-02-27 20:36:51 +0200
committerXhmikosR <[email protected]>2015-03-03 18:26:38 +0200
commit0862d1410ec9347a75915c4eb0dc59447cb46dad (patch)
tree3b21dff4c04cacbe2831ca2ae513634432ff91f8 /docs/_includes/getting-started/disabling-responsiveness.html
parent457885075f8fa004f3a190efdcf381af218e1bb7 (diff)
downloadbootstrap-0862d1410ec9347a75915c4eb0dc59447cb46dad.tar.xz
bootstrap-0862d1410ec9347a75915c4eb0dc59447cb46dad.zip
Accessibility and headings hierarchy for the "Getting started" page.
Closes #15946 by merging it.
Diffstat (limited to 'docs/_includes/getting-started/disabling-responsiveness.html')
-rw-r--r--docs/_includes/getting-started/disabling-responsiveness.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_includes/getting-started/disabling-responsiveness.html b/docs/_includes/getting-started/disabling-responsiveness.html
index 6102e02f3..f58befc1f 100644
--- a/docs/_includes/getting-started/disabling-responsiveness.html
+++ b/docs/_includes/getting-started/disabling-responsiveness.html
@@ -4,7 +4,7 @@
<p class="lead">Bootstrap automatically adapts your pages for various screen sizes.
Here's how to disable this feature so your page works like <a href="../examples/non-responsive/">this non-responsive example</a>.</p>
- <h3>Steps to disable page responsiveness</h3>
+ <h2>Steps to disable page responsiveness</h2>
<ol>
<li>Omit the viewport <code>&lt;meta&gt;</code> mentioned in <a href="../css/#overview-mobile">the CSS docs</a></li>
<li>Override the <code>width</code> on the <code>.container</code> for each grid tier with a single width, for example <code>width: 970px !important;</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>
@@ -14,7 +14,7 @@
<p>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.</p>
- <h3>Bootstrap template with responsiveness disabled</h3>
+ <h2>Bootstrap template with responsiveness disabled</h2>
<p>We've applied these steps to an example. Read its source code to see the specific changes implemented.</p>
<p>
<a href="../examples/non-responsive/" class="btn btn-primary">View non-responsive example</a>