...I know this sounds dumb...but..

liunx

Guest
*sigh*...ok..when I try to put a link to a certain spot the picture is there..and it covers up tha link..How do I make the link go above tha pic so you can see it?<!--content-->The only way that could happen is if your image is in a positioned element which is shown ABOVE the layout realm of the normal page flow, or the image is in an iframe, etc.<br />
<br />
If you have the link in a positioned element you can set the z-index of that element to a z-index higher than the picture, e.g. example:<br />
<br />
<span style="position: absolute; top: 2px; left: 4px; width:120px; height: 20px; z-index: 100; background-color: yellow;"><br />
I am Below<br />
</span><br />
<br />
<span style="position: absolute; top: 10px; left: 10px; width:1220px; height: 20px; z-index: 200; background-color: red;"><br />
I am TOP<br />
</span><br />
<br />
Now try to change the z-index of the first <span> element to, say 500, and see what happens.<!--content-->
 
Back
Top