My dilemma arises when nesting a product slider div inside a bootstrap col-lg-x div, as illustrated below:
https://i.sstatic.net/9tCVA.png
The issue lies in the layout distortion that occurs within a div.row > div.col-lg-8 structure, where images are cut off and content arrangement is compromised.
The HTML markup of the problematic div looks like this:
<div class="row">
<div class="col-lg-8">
... insert slider code here
</div>
</div>