Problem with Bootstrap Grid when uploaded
PermalinkHere is my page_theme.php
<?php namespace Application\Theme\Colegio; use Concrete\Core\Page\Theme\Theme; print ("hello"); class PageTheme extends Theme { protected $pThemeGridFrameworkHandle = 'bootstrap3'; }
And here's a provisional link for my site in the koding server:http://javirivera.koding.io/caappr-3...
Thanks for any help I can get.
<? $a = new Area('Main'); $a->enableGridContainer(); $a->display($c); ?>
I think they can be combined, but both will enable the grids.
enableGridContainer() will ensure that a container/row div gets created for every block. That's good if you have a full-width page type that doesn't already have a div.container in the theme.
<? $a = new Area('Main'); $a->enabledGridContainer(); $a->display($c); ?>
I think they can be combined, but both will enable the grids.
enableGridContainer() will ensure that a container/row div gets created for every block. That's good if you have a full-width page type that doesn't already have a div.container in the theme.
example
<? $a = new Area('Main'); $a->setAreaGridMaximumColumns(12); $a->display($c); ?>
example