I am currently facing an issue with my website where I have a static nav bar at the bottom of each page, but I need to add another content div above it. When I try to position it as a footer, it ends up in the same spot as the nav bar. Absolute positioning is not a viable solution due to font size changes when switching languages and varying device resolutions.
Is there a way to stack these footer divs so that the new one can sit on top of the existing nav bar without having to completely overhaul the JQM framework?
It seems like there should be a simple solution like setting a "footer z-index 1" to prioritize the layering of elements in the layout calculation process.