I'm creating a simple website. For the footer I want to enable bootstrap3 grid.
In the full.php it looks like this:
<?php
$a = new Area('Footer');
$a->enableGridContainer();
$a->display($c);
?>
This is working fine. However, since it's a footer I want to change the area to a Global Area
<?php
$a = new GlobalArea('Footer');
$a->enableGridContainer();
$a->display($c);
?>
In edit mode, i can't see the 'Sitewide Footer' button, but I can still click on it. However the real problem here is when I click on it, only 'Edit Area Design' pops up, there is no 'Add layout'.
Is this a bug or a problem with my code?
Thanks in advance
Why not enable bootstrap grids in the template/page type and then add the global areas that you want? Or alternatively create any global area and then add HTML which sets up the bootstrap for you? As so: