Adding outer container
Permalink
Elemental-based theme
Trying to add an outer container around the standard .container class to expand the width of the background color behind certain blocks (to match the width of the image slider).
How do I crack into this in the default.php file?
Thanks a bazillion to any helpers.
http://ct2learn.com/_beta/ct1_2015/index.php...
Trying to add an outer container around the standard .container class to expand the width of the background color behind certain blocks (to match the width of the image slider).
How do I crack into this in the default.php file?
<?php $a = new Area('Main'); $a->enableGridContainer(); $a->display($c); ?>
Thanks a bazillion to any helpers.
http://ct2learn.com/_beta/ct1_2015/index.php...
Follow up. Renamed and hacked the default.php file. Made 6 distinct Areas, some which use enableGridContainer() and some which use setAreaGridMaximumColumns(12), with a custom div around the latter. This is allowing me to alter the content width from one area to another. No clue if this is good or bad practice.