I have a fixed element (text) positioned with the grider as following:
.fixed-element{
position: fixed;
top: 1%;
right: 2%;
z-index: 5;
}
and this one works perfectly
but I also have a logo on the other side (image) and that one is always behind the project thumbnails doesn't matter how I set the Z index. (The selector is correct since the logo is fixed)
.fixedlogo{
position: fixed;
top: 2%;
right: 91%;
z-index: 1000000;
}
What could be wrong?