I am facing an issue with my carousel layout. I have 3 columns, and one column is reserved for Prev & Next carousel controls. These controls are vertically aligned using the my-auto class. However, after adding this class to the column, the links within it stop working. I tried using overflow:auto on the column div, but it didn't solve the problem. Any suggestions or advice on how to fix this? I am using Bootstrap 4.4.
For reference, here is a quick JS-fiddle example of what I have currently set up. Any help would be greatly appreciated!
<div id="carouselOfferings" class="carousel slide" data-ride="carousel" data-interval="3000">
<div class="container">
<ol class="carousel-indicators">
<li data-target="#carouselOfferings" data-slide-to="0" class="active"></li>
<li data-target="#carouselOfferings" data-slide-to="1"></li>
</ol>
</div>
<div class="container-fluid carousel-inner">
<div class="carousel-item active">
<div class="row">
<div class="offset-lg-1 col-lg-5 carousel-offerings-txt">
<h2>Heading 1</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
<div class="offset-lg-1 col-lg-1 align-self-center" >
<a href="#carouselOfferings" class="left carousel-control small-uppercase-txt" data-slide="prev">prev</a>
<a href="#carouselOfferings" class="right carousel-control small-uppercase-txt " data-slide="next">next</a>
</div>
<div class="col-lg-4 col-img-full-div">
<img src="https://c402277.ssl.cf1.rackcdn.com/photos/2325/images/hero_small/mountains-hero.jpg?1345838509">
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="offset-lg-1 col-lg-5 carousel-offerings-txt">
<h2>Heading 2</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
<div class="offset-lg-1 col-lg-1 align-self-center" >
<a href="#carouselOfferings" class="left carousel-control small-uppercase-txt" data-slide="prev">prev</a>
<a href="#carouselOfferings" class="right carousel-control small-uppercase-txt " data-slide="next">next</a>
</div>
<div class="col-lg-4 col-img-full-div">
<img src="https://c402277.ssl.cf1.rackcdn.com/photos/2325/images/hero_small/mountains-hero.jpg?1345838509">
</div>
</div>
</div>
</div>
</div>