I have a site layout that relies on alot of positioning on top of one another to create the desired visual effect. I have an image at the very bottom of the z-index pile and as a result the mouse cant recognise that its a link, is there any way around this apart from putting it up the z-index stack order?
Asked
Active
Viewed 210 times
0
-
What do you mean: "the mouse cant recognise that its a link". Is it an image wrapped in an anchor? Did you try adding an alert onclick directly on the image to see if it's actually being clicked? – Beez May 05 '11 at 18:18
-
It would be easier to help if you provided some code to look at or even try out. – kapa May 05 '11 at 18:20
-
You can post your code, but probably not. – Jarrett Widman May 05 '11 at 18:16
1 Answers
0
You could position (absolute) a styled "a" tag so that it is over the area that you want to link. Ex:
a.specific{
display:block;
width:100px;
height:100px;
position:absolute;
top:100px;
left:200px;
z-index:INFINITY! :);
}

Todd
- 676
- 5
- 12