I am currently working on creating a grid for a gallery that features an expanding preview to showcase more details. I found some helpful code in this informative article: https://tympanus.net/codrops/2013/03/19/thumbnail-grid-with-expanding-preview/ Everything is functioning well, but I am interested in making the design responsive by integrating Bootstrap 4. The challenge I'm encountering is that the expansion feature is confined within the column, restricting it to the same width instead of spanning the entire page width. Is there a way to extend the expansion to full width or position it outside the column?
<section class="films">
<div class="container-fluid">
<div id="og-grid" class="og-grid row">
<div class="movie col-md-4">
<a class="portfolio-box" href="http://cargocollective.com/jaimemartinez/" data-largesrc="images/portfolio/fullsize/1.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
<img class="img-fluid" src="images/portfolio/thumbnails/1.jpg" alt="img01"/>
</a>
</div>
<div class="movie col-md-4">
<a class="portfolio-box" href="http://cargocollective.com/jaimemartinez/" data-largesrc="images/portfolio/fullsize/1.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
<img class="img-fluid" src="images/portfolio/thumbnails/1.jpg" alt="img01"/>
</a>
</div>
<div class="movie col-md-4">
<a class="portfolio-box" href="http://cargocollective.com/jaimemartinez/" data-largesrc="images/portfolio/fullsize/1.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
<img class="img-fluid" src="images/portfolio/thumbnails/1.jpg" alt="img01"/>
</a>
</div>
</div>
</div>
</section>
The initial CSS styling can be found here: https://github.com/codrops/ThumbnailGridExpandingPreview/blob/master/css/component.css
And JavaScript resources are available at: https://github.com/codrops/ThumbnailGridExpandingPreview/blob/master/js/grid.js