I have a problem. I want my footer be on top of everything else on my page. The trick is that I use the Galleria plugin, and it has its own style, and for some reason, even if I put z-index: 99999; on my footer , he's still not on top.
This is the container galleria, the main div of the plugin.
.galleria-container { overflow: hidden; width: 960px; height: 520px; min-width: 960px; }
This is my footer container
#footer { z-index: 9999; width: 700px; height: 500px; position: absolute; background-color: aqua; }
Okey, so when I load my site, itβs fine and I can see my footer, but when I resize windows by executing this code, it hides again.
$(".galleria-container").css("width", $(window).width()); $(".galleria-container").css("height", $(window).height());
source share