Hello, thank you in advance for any help offered. The website in question can be accessed through this link: caulfield.co/test/
I am working on implementing a parallax footer reveal effect using Bootstrap 4. I am having difficulty adjusting the z-index of the fixed-bottom footer to ensure it is hidden behind the body div and only revealed after scrolling to the bottom. Despite trying to modify the z-index property, nothing seems to change. I suspect that there may be something in the CSS of Bootstrap causing this issue, but I am unsure where to begin looking. Can someone provide assistance?
CSS:
.body-temp{
height:1000px;
margin-bottom:300px;
background-color:black;
z-index:5000;
}
/* Footer
-------------------------------------------------- */
footer{
height:300px;
background-color:#232323;
margin: 0 auto;
text-align:center;
font-weight:300;
font-size:.8rem;
color:#666666;
z-index: -1000;
}
HTML:
<div class="container body-temp">
</div>
<!-- Footer -->
<footer class="container-fluid fixed-bottom">
<a class="" href="#">
<img class="grow" id="footer-logo" src="images/mb-white.svg" alt="Margaret Biggs Fine Art">
</a>
<p>© 2018 Margaret Biggs</p>
<div>
<a class="footer-icons" href="#">
<i class="fab fa-linkedin-in"></i>
</a>
<a class="footer-icons" href="#">
<i class="fab fa-facebook-f"></i>
</a>
</div>
</footer>