From 29fe7ed68402aee6c24949ed2509a415d179bb57 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Aug 2013 10:58:28 -0700 Subject: fix up justified nav example --- getting-started.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'getting-started.html') diff --git a/getting-started.html b/getting-started.html index 016ef4c3e..0c5c67c25 100644 --- a/getting-started.html +++ b/getting-started.html @@ -207,10 +207,17 @@ bootstrap/

Sticky footer with navbar

-

Attach a footer to the bottom of the viewport along with a fixed navbar at the top.

+

Attach a footer to the bottom of the viewport with a fixed navbar at the top.

+
+ + + +

Justified nav

+

Expand on the default navbar and more to create justified navigation links.

+
@@ -218,6 +225,8 @@ bootstrap/

Offcanvas

Build a toggleable off-canvas navigation menu for use with Bootstrap.

+
+
-- cgit v1.2.3 From 3c880e681d49ade20f1b9fcbfb573172d24b3b89 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Aug 2013 13:30:33 -0700 Subject: finish up second pass through docs nav, headings, organization, naming, etc (another run through at #9710) --- getting-started.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'getting-started.html') diff --git a/getting-started.html b/getting-started.html index 0c5c67c25..d19055052 100644 --- a/getting-started.html +++ b/getting-started.html @@ -15,7 +15,7 @@ base_url: "../"

There are a few easy ways to quickly get started with Bootstrap, each one appealing to a different skill level and use case. Read through to see what suits your particular needs.

-

Download latest full source

+

Download latest full source

Until Bootstrap 3.0.0 is finalized, download the latest full source code (includes compiled and minified versions of our CSS and JavaScript under the dist/ directory).

Download latest Bootstrap 3

-

More download options

+

Additional downloads

Download latest source code @@ -41,7 +41,7 @@ base_url: "../" {% highlight bash %}$ bower install bootstrap{% endhighlight %}

-

Use the Bootstrap CDN

+

Bootstrap CDN

The folks over at NetDNA have graciously provided CDN support for Bootstrap's CSS and JavaScript. To use, swap your local instances for the Bootstrap CDN links listed below.

{% highlight html linenos %} -- cgit v1.2.3 From 53c80ed9cbeff8a3c58abe0f824ff68ef56d617a Mon Sep 17 00:00:00 2001 From: fat Date: Sat, 17 Aug 2013 13:40:28 -0700 Subject: add comment addressing #9023 --- getting-started.html | 1 + 1 file changed, 1 insertion(+) (limited to 'getting-started.html') diff --git a/getting-started.html b/getting-started.html index d19055052..ea5f96e61 100644 --- a/getting-started.html +++ b/getting-started.html @@ -365,6 +365,7 @@ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {

Modals and mobile devices

Support for overflow: hidden on the <body> element is quite limited in iOS and Android. To that end, when you scroll past the top or bottom of a modal in either of those devices' browsers, the <body> content will begin to scroll.

+

Also, note that if you're using inputs in your modal – iOS has a rendering bug which doesn't update the position of fixed elements when the virtual keyboard is triggered. There are a few work arounds for this including transforming your elements to position absolute or invoking a timer on focus to try to correct the positioning manually. This is not handled by Bootstrap, so it is up to you to decide which solution is best for your application.

Browser zooming

Page zooming inevitably presents rendering artifacts in some components, both in Bootstrap and the rest of the web. Depending on the issue, we may be able to fix it (search first and then open an issue if need be). However, we tend to ignore these as they often have no direct solution other than hacky workarounds.

-- cgit v1.2.3