When I am at the top of the page, I want to display the phone number and email above the navigation bar. However, as soon as I start scrolling down, I want the phone number and email to disappear and only show the navigation bar. I have attempted using fixed-top, but it always hides the phone/email.
How can I achieve this layout across all device sizes?
I am currently utilizing Bootstrap 4.
<body class="d-flex flex-column h-100">
<header>
<div class="container">
<div class="float-right mt-1">
<a href="mailto:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="553c3b333a15302d34382539307b3639">info@example.com</a>" class="ml-4 text-dark"><i class="fas fa-envelope"></i><span class="ml-1 text-dark d-none d-sm-inline">info@example.com</span></a>
<a href="tel:1-555-555-5555" class="ml-4 text-dark"><i class="fas fa-phone-alt"></i><span class="ml-1 d-none d-sm-inline">+1 (555) 555-5555</span></a>
</div>
<br>
<nav class="navbar navbar-expand-lg fixed-top navbar-light bg-white mt-1">
<a class="navbar-brand" href="#">Example</a>
</nav>
</div>
</header>