Hey there! I'm encountering an issue where one of my elements covers a button when it reaches the bottom. I need it to be hidden using 'display:none'. Is there a way to achieve this?
Currently, my code looks like this:-
<header
data-start="opacity: 1; "
data-400p-start="opacity: 1; "
data-450p-start="opacity: 0; "
data-1699p-start="display: none;"
>
<div class="wrapper clearfix">
<div class="intro">
<h1><span>Innovative Studios Tailor Made</span>
<span>For Your Natural Habitat</span></h1>
<a href="contact.html" class="intro_btn">GET A FREE CONSULTATION</a>
</div>
</div>
</header>
The issue I am facing is that with 'display:none' set at 1699p, the entire div remains hidden from the beginning.