I'm using Drupal Bootsrap base theme and I'm building sub theme on top of it. Basically the site is the default 1170 px wide but middle of content on same page I would like to have browser full width content (max 1400px). But since the drupal Bootsrap theme has a container that s 1170 wide can I somehow make it wider middle of the div?
<div class="main-container container">
<div>normal 1170 wide content</div>
<div> full browser width content</div>
</div>
So the container class make that whole div to be 1170 wide. Can I somehow make it wider middle? Does bootstrap have any class for this stuff? Been trying to go through the documentation but haven't find anything related to case like this.