From 3e6e52b9b5bd2b232ff26f87227198c98233fea4 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 28 Jul 2013 12:03:57 -0500 Subject: [PATCH] Use same sizes for small grid --- lib/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config.php b/lib/config.php index b45d574..9252575 100644 --- a/lib/config.php +++ b/lib/config.php @@ -21,7 +21,7 @@ define('POST_EXCERPT_LENGTH', 40); function roots_main_class() { if (roots_display_sidebar()) { // Classes on pages with the sidebar - $class = 'col-sm-7 col-lg-8'; + $class = 'col-sm-8 col-lg-8'; } else { // Classes on full width pages $class = 'col-lg-12'; @@ -34,7 +34,7 @@ function roots_main_class() { * .sidebar classes */ function roots_sidebar_class() { - return 'col-sm-5 col-lg-4'; + return 'col-sm-4 col-lg-4'; } /**