My div has a z-index of 99999 and is displaying correctly on Firefox and Safari. However, when testing it on Chrome, the footer does not appear as the top element. What steps should I take to ensure it is the highest element?
Do I need to make any additional adjustments to the CSS code for the footer to be the topmost element?
<div id="footer" style="z-index: 99999 !important; width: 100%; height: 65px; position: fixed; bottom: 0px; "> <div class="container"> <div class="footer-nav"> <ul> <li><a href="/team/">Team</a></li> </ul> <ul> <li>Jobs</li> </ul> <ul> <li><Twitter></li> </ul> </div> <hr> </div> </div>