I have a problem. I want my footer
to be on top of everything else possible in my page. The trick is that I'm using Galleria plug-in and it has it's own style and for some reason even if I put z-index: 99999;
on my footer
it is still not on top.
This is galleria container, the main div of the plug-in.
.galleria-container {
overflow: hidden;
width: 960px; /* This value is changed by JS */
height: 520px; /* This value is changed by JS */
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 website it is fine and I can see my footer, but when I resize windows thus executing this code it is hidden again.
$(".galleria-container").css("width", $(window).width());
$(".galleria-container").css("height", $(window).height());