From d651d780c3c92b7009df6cbd742d89ebd72a8de5 Mon Sep 17 00:00:00 2001
From: Cameron <cameron@e107coders.org>
Date: Sat, 4 May 2013 12:53:04 -0700
Subject: [PATCH] Closes #194 - fixes padding on top of page when bootstrap
 used at a width less than 1000px

---
 e107_themes/bootstrap/style.css | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/e107_themes/bootstrap/style.css b/e107_themes/bootstrap/style.css
index 621d9fd62..8530ecf12 100644
--- a/e107_themes/bootstrap/style.css
+++ b/e107_themes/bootstrap/style.css
@@ -1,5 +1,12 @@
 /*  */
-body 						{ padding-top: 75px; padding-bottom: 40px; }
+body 						{ padding-bottom: 40px; }
+
+@media (min-width: 1000px){ 
+	
+body						{ padding-top: 75px;  }
+
+} 
+
 .well 						{ padding:10px; }
 footer						{ padding:60px }