I have a customized Bootstrap file that alters certain components, however, I am encountering issues with it especially when transitioning to Bootstrap 4. The problem arises in specific scenarios and I would like to revert back to using the original Bootstrap component for those cases.
For instance:
<link href="path-to-original-bootstrap" rel="stylesheet">
/* here carousel was overridden with original one and work badly */
<link href="path-to-modified-bootstrap" rel="stylesheet">
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="..." alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="..." alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="..." alt="Third slide">
</div>
</div>
</div>
I am seeking guidance on how to incorporate the original Bootstrap carousel instead of the modified one in this particular scenario. How should I go about doing this?