Earlier on, I delved into using Bootstrap for the first time and encountered some difficulties with resizing a carousel on one of my pages. This specific page had a gradient background in the body and an overlay bg in the content section.
In attempting to replicate the same code structure in the second link provided, I noticed that when I resize vertically smaller, the container fails to overlap the content as expected.
How can I achieve a similar effect in the second link while ensuring that it adjusts accordingly for different resolutions? My goal is to have the container stay in a fixed position below the content.
<section class="slider" id="slider">
<div class="carousel slide" data-ride="carousel" id="myCarousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li class="active" data-slide-to="0" data-target="#myCarousel">
</li>
... (omitted remaining HTML code for brevity)
<a class="right carousel-control" data-slide="next" href="#myCarousel" role="button"><span aria-hidden="true" class="glyphicon glyphicon-chevron-right"></span> <span class="sr-only">Next</span></a>
</div>
</section>