Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS header tag overlaps aligned image in IE7 Re: header tag overlaps aligned image in IE7

#50883
Rob MacKay
Participant

if you are using z-indexing make sure you have set a position:relative to the object you are trying to z-index.

you can use any position setting, absolute, fixed or relative – its just realtive is the passive one…

basically I added

position:relative;
z-index:10;

to the <a href> with the images tags inside them… give it a go… you might want to set a class for those specific <a> tags… :)