Library changes

This commit is contained in:
Foxaii
2013-07-28 13:23:38 +01:00
parent 3bde5dbf77
commit cd20e417d2
3 changed files with 6 additions and 11 deletions

View File

@@ -21,10 +21,10 @@ define('POST_EXCERPT_LENGTH', 40);
function roots_main_class() {
if (roots_display_sidebar()) {
// Classes on pages with the sidebar
$class = 'span8';
$class = 'col-sm-7 col-lg-8';
} else {
// Classes on full width pages
$class = 'span12';
$class = 'col-lg-12';
}
return $class;
@@ -34,7 +34,7 @@ function roots_main_class() {
* .sidebar classes
*/
function roots_sidebar_class() {
return 'span4';
return 'col-sm-5 col-lg-4';
}
/**