diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index 684c4173312ea7a156d306a9143c2e8282ace01f..a4bd11b3e02aceedbea10973bd64c7c0d43b13f5 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -312,14 +312,6 @@ img.large-bird {
   opacity: .1;
 }
 
-/* Media grid images
---------------------------------------------------- */
-.media-grid img {
-  height: 150px;
-  width: 210px;
-}
-
-
 /* Pretty Print
 -------------------------------------------------- */
 pre.prettyprint {
diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js
index d1c6751ea252b66b5da322929d813f9371e359e8..e39a7547498c98aa6b05358d4d8a2999f3957c8e 100644
--- a/docs/assets/js/application.js
+++ b/docs/assets/js/application.js
@@ -48,15 +48,16 @@ $(document).ready(function(){
   // POSITION STATIC TWIPSIES
   // ========================
 
-  $(".twipsies a").each(function () {
-     $(this)
-      .twipsy({
-        live: false
-      , placement: $(this).attr('title')
-      , trigger: 'manual'
-      , offset: 2
+  $(window).load(function () {
+    $(".twipsies a").each(function () {
+       $(this)
+        .twipsy({
+          live: false
+        , placement: $(this).attr('title')
+        , trigger: 'manual'
+        , offset: 2
+        })
+        .trigger('twipsy:show')
       })
-      .trigger('twipsy:show')
-    })
-
+  })
 });