Image hover to view links

GoodApples

Customer
I have a html forum block with a list of links.
What I would like to do is cover the block with a image.
When hovering over the image the user can see the links. :cool:
 
Try adding

Code:
onMouseOver="this.style.zIndex = -1" onMouseOut="this.style.zIndex = 5"

to the end of your IMG tag.

Code:
<img src="http://www.yoursite.com/yourimage.png" onMouseOver="this.style.zIndex = -1" onMouseOut="this.style.zIndex = 5" />

I haven't tested this, by the way, so it may not work... ;)
 
Back
Top