Click to See Complete Forum and Search --> : Overlay image over table


googlebot
12-04-2008, 06:08 PM
Hi, I need to overlay an image over a table. I need to be able to position it using css but I can't figure out how to code it. Any ideas? Thanks.

infinityspiral
12-05-2008, 11:40 AM
z-index sounds like what you need if you want an image on top of the table. If you want an image as a the background of the table that's something different entirely.

googlebot
12-05-2008, 06:05 PM
thanks but how would I set up a z index?

Tabo
12-05-2008, 06:48 PM
<img style="position:relative or absolute;z-index:10"/>

toenailsin
12-05-2008, 07:00 PM
why not set the image as the background for the table?

googlebot
12-05-2008, 07:06 PM
Thanks tabo and toenailsin. I appreciate the help.