Bootstrap Grid Container

Permalink
Hi,
A facing an issue with the bootstrap grid container. Columns are getting added to the next row(Down) while adding a column and I cannot adjust the width of the column while editing. Expecting a quick reply on this

 
Deepu replied on at Permalink Reply
I am using bootstrap version 4 in the theme.
http://prnt.sc/q9sb5z
tduncandesign replied on at Permalink Reply
tduncandesign
The Bootstrap given for the layout tool is v3... that may be conflicting. Have you got your page wrapper div in place on your theme?
<div class="<?php echo $c->getPageWrapperClass() ?>">


The grid versions are in concrete/src/Page/Theme/GridFramework/Type ... not sure if you can just copy in BS4 there tho... you may can mod the BS3 file to use BS4 syntax? Then add to page-theme.php

Just couple ideas, hope it helps...
_______________________________
I'm just trying to get BS3 to show up in my layout tool this morning... it was there, now gone!

** Edited to add: when I modded my Area on the page to include the setAreaGrid line, now Bootstrap shows up. Maybe a requirement I forgot... (but it seems like I didn't have to do that before) : (and sorry that's off topic from your request, but posting for anyone else who finds this)
<?php 
        //Full Width Area 2
        $fwb = new Area('Full Width Bottom');
        $fwb->setAreaGridMaximumColumns(12);
        $fwb->display($c); 
      ?>
tallacman replied on at Permalink Reply
tallacman
There is a sample bs4 theme on github. I will also PM you one of mine to look at.