diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index e721aaa80f7e98079fe9ff26a5015ac59c670f7d..1ec4304d6a18c33d78f835dc59bfa407fbd64996 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -3298,6 +3298,7 @@ button.close {
 
 .pagination {
   display: inline-block;
+  padding-left: 0;
   margin: 20px 0;
   border-radius: 4px;
 }
@@ -3389,6 +3390,7 @@ button.close {
 }
 
 .pager {
+  padding-left: 0;
   margin: 20px 0;
   text-align: center;
   list-style: none;
@@ -4014,7 +4016,7 @@ a.thumbnail:focus {
 }
 
 .media-list {
-  margin-left: 0;
+  padding-left: 0;
   list-style: none;
 }
 
diff --git a/docs/examples/navbar-fixed-top.html b/docs/examples/navbar-fixed-top.html
index 2f73f08e46d3042510a89342733f84894c0ef0ce..425ff418f08ec0eab53decacac6f372e26b12bd3 100644
--- a/docs/examples/navbar-fixed-top.html
+++ b/docs/examples/navbar-fixed-top.html
@@ -60,7 +60,7 @@ title: Fixed navbar template
         <h1>Navbar example</h1>
         <p>This example is a quick exercise to illustrate how the default, static navbar and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.</p>
         <p>
-          <a class="btn btn-large btn-primary" href="../../docs/#navbar">View navbar docs &raquo;</a>
+          <a class="btn btn-large btn-primary" href="/components/#navbar">View navbar docs &raquo;</a>
         </p>
       </div>
 
diff --git a/docs/examples/navbar-static-top.html b/docs/examples/navbar-static-top.html
index f2274690010525f0cff632edcbe650facff78271..c32d2134afab98b33806fa8a178fa74df4357f57 100644
--- a/docs/examples/navbar-static-top.html
+++ b/docs/examples/navbar-static-top.html
@@ -57,7 +57,7 @@ title: Static navbar template
     <h1>Navbar example</h1>
     <p>This example is a quick exercise to illustrate how the default, static navbar and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.</p>
     <p>
-      <a class="btn btn-large btn-primary" href="../../docs/#navbar">View navbar docs &raquo;</a>
+      <a class="btn btn-large btn-primary" href="/components/#navbar">View navbar docs &raquo;</a>
     </p>
   </div>
 
diff --git a/docs/examples/navbar.html b/docs/examples/navbar.html
index f8b25482ee894f7eeb91ecf247dd89ff113243ca..09dba0f23cfb71e050336f4e51dc4ecbe8f8711a 100644
--- a/docs/examples/navbar.html
+++ b/docs/examples/navbar.html
@@ -60,7 +60,7 @@ title: Navbar template
     <h1>Navbar example</h1>
     <p>This example is a quick exercise to illustrate how the default, static navbar and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.</p>
     <p>
-      <a class="btn btn-large btn-primary" href="../../docs/#navbar">View navbar docs &raquo;</a>
+      <a class="btn btn-large btn-primary" href="/components/#navbar">View navbar docs &raquo;</a>
     </p>
   </div>
 
diff --git a/docs/getting-started.html b/docs/getting-started.html
index 718e8ed79da3e948536f58b8c985744496748247..56e6cbc323defe3c9abca39321edeb50c68a2b88 100644
--- a/docs/getting-started.html
+++ b/docs/getting-started.html
@@ -15,7 +15,7 @@ lead: "An overview of Bootstrap, how to download and use, basic templates and ex
     <p class="lead">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.</p>
 
     <h3>Download compiled CSS and JS</h3>
-    <p class="lead">The fastest way to get started is to get the compiled and minified versions of our CSS, JavaScript, and fonts. No documentation or original source files are included.</p>
+    <p class="lead">The fastest way to get started is to get the compiled and minified versions of our CSS and JavaScript. No documentation or original source files are included.</p>
     <p><a class="btn btn-large btn-primary" href="assets/bootstrap.zip" onclick="_gaq.push(['_trackEvent', 'Getting started', 'Download', 'Download compiled']);">Download Bootstrap</a></p>
 
     <hr>
@@ -72,12 +72,6 @@ bootstrap/
 ├── js/
 │   ├── bootstrap.js
 │   ├── bootstrap.min.js
-└── fonts/
-    ├── glyphiconshalflings-regular.eot
-    ├── glyphiconshalflings-regular.otf
-    ├── glyphiconshalflings-regular.svg
-    ├── glyphiconshalflings-regular.ttf
-    └── glyphiconshalflings-regular.woff
 {% endhighlight %}
 
     <p>This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). The image files are compressed using <a href="http://imageoptim.com/">ImageOptim</a>, a Mac app for compressing PNGs.</p>
diff --git a/less/media.less b/less/media.less
index 21063eb2ba052c901fe3763a031b1afa13f0c070..bcba8081c1178fd055eed96dc9a02a6291adac7a 100644
--- a/less/media.less
+++ b/less/media.less
@@ -49,6 +49,6 @@
 
 // Undo default ul/ol styles
 .media-list {
-  margin-left: 0;
+  padding-left: 0;
   list-style: none;
 }
diff --git a/less/pager.less b/less/pager.less
index 0b2fcf7cbb8c66fe92c40419c8a511430f5b51b9..007952da08b285c815200cf3d3f0d43c3f3ff0cc 100644
--- a/less/pager.less
+++ b/less/pager.less
@@ -4,6 +4,7 @@
 
 
 .pager {
+  padding-left: 0;
   margin: @line-height-computed 0;
   list-style: none;
   text-align: center;
diff --git a/less/pagination.less b/less/pagination.less
index 73c063be04ccb60017d446008138180390c03ed6..320387a67d4955d6062c6dc4ebc237e7aeb76fd6 100644
--- a/less/pagination.less
+++ b/less/pagination.less
@@ -3,6 +3,7 @@
 // --------------------------------------------------
 .pagination {
   display: inline-block;
+  padding-left: 0;
   margin: @line-height-computed 0;
   border-radius: @border-radius-base;
 }