View Full Version : Puzzled on a Picture


Phantomwolf29
11-30-2005, 12:57 AM
I'm a bit confused here, but how do you put text over and image? I don't want a text box, but just to put text over an image that will be sort of like my background. (Like a second background almost) Help would be appriciated! =) Thanks!

~Phantom

harmor
11-30-2005, 01:05 AM
I'm sure this can be done through CSS but I don't know that offhand
I'll teach you using a table

Let's say the image you wanted text over was named "lala.jpg"

<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td background="lala.jpg">Text Here</td>
</tr>
</table>

Phantomwolf29
11-30-2005, 01:07 AM
I'll see if it works, thanks! :)

Phantomwolf29
11-30-2005, 01:13 AM
Yup, that worked out fine! ^^

Thanks a bunch!