Closed (duplicate)
Project:
Bootstrap
Version:
7.x-2.0-beta3
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
16 May 2013 at 13:01 UTC
Updated:
2 Apr 2014 at 11:24 UTC
Jump to comment: Most recent
Comments
Comment #1
markhalliwellCurrently, there's no "correct" way to do this out of the box. What I would would recommend doing though is copying the _bootstrap_content_span() function into your sub-theme's
template.phpfile. Rename that function to something like_subtheme_bootstrap_content_span()and change the span classes in there. Then in yourpage.tpl.phpfile, call your new sub-theme's content span function instead like:<section class="<?php print _subtheme_bootstrap_content_span($columns); ?>">You probably shouldn't manually add/edit these span tags since there can be sidebars on some pages and not others. This function helps determine the correct span classes to use in this type of scenario.
Marking this as a feature request. I too would like to see this be a little easier than it currently is.
Comment #2
markhalliwell