I’ve searched everywhere, and I just can’t find out the answer to this.
So I have a DIV in my style sheet, that is positioned absolute and with a background image.
Inside that DIV, I have an that I want to appear UNDER the DIV background.
I’ve tried z-index but it dosn’t seem to work!? Is it something to to with the absolute position on my DIV?
Whatever you do, you CANNOT make child elements appear BELOW their parent’s background (see about stacking contexts for more info.) You need to modify your DOM so that the second element is taken outside of the DIV having a background to be shown in front of that element.