Open up http://irule.at/quovadis, and it will show you a regular theme. The problem is that the div photos is not showing up. It’s most likely hiding behind body/html because of the z-index, but I want them to show behind the divs in the middle. How do I fix this?
Open up http://irule.at/quovadis , and it will show you a regular theme. The problem
Share
It looks like you’re using a negative z-index for photos. Instead of that, use a positive or 0 index, and give the other elements a higher index. Also remember that in order for z-index to work the elements should have
position: relative. I got photos to show up by having it z-index 1, having header z-index 2 and position relative.