I'm facing a dilemma with my Bootstrap
template where my tagline overlaps all other content on the page.
When I scroll down, the text lays over my logo and navbar, creating a messy look especially on smaller screens. Despite trying to adjust the z-index, the text disappears completely when I position the elements. Can someone help me out? Here are some snippets of my code:
HTML (h1 headers causing the issue)
<span id="index.html">
<section class="creative-banner">
<div data-nav-dots="false" data-nav-arrow="true" data-items="1" data-sm-items="1" data-lg-items="1" data-md-items="1" data-autoplay="true">
<div class="item"> <img class="img-fluid" src="images/home.jpg" alt="person sitting on bench">
<div class="creative-text text-left">
<h1 class="iq-font-white iq-mt-10"><strong>Go Ahead, Share Your Idea <br>With The World</br></strong></h1> <!--Original class = "text-uppercase iq-font-white display-3"-->
<h1 class="iq-font-white iq-mt-10"><strong>We'll Help</strong></h1>
</div>
</div>
CSS: .
owl-item.active .creative-text.text-left h1 { animation: 1s .2s fadeInRight both; }