PDA

View Full Version : Table Backgrounds.....


Oknark
05-31-2001, 07:37 PM
Is there any way to make a background picture in a table not tile? Im redisgning the site to have no frames,and this is the one thing standing in my way.

Thank for any help guys

dford
06-12-2001, 01:49 PM
Was able to find information on the subject at the following location.

http://www.netmechanic.com/news/vol3/html_no6.htm

I think this may at least give you some ideas.

Good Luck!

Oknark
06-12-2001, 02:52 PM
Thanks for the help! But being the ignorant person I am, I tried getting it to work until it did. The site now looks l33t.

dimx
06-13-2001, 12:03 PM
Yeah, if your using html tables and you want to type text over a picture, you just do it like this:

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr><td bgbackground="http://domain.com/image.gif"> your text here </td></tr>
</table>

or

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr><td background="http://domain.com/image.gif"> your text here </td></tr>
</table>

--- not sure , i think its the first.

BbBoy
06-13-2001, 12:38 PM
dimx, HTML is enabled on this forum, so you need to put &amp;lt; and &amp;gt; for &lt; and &gt; symbols in HTML. :)

dimx
06-13-2001, 01:19 PM
Ugh, i forgot..

&lt;table border="0"&gt;
&lt;tr&gt; &lt;td bgbackground="image.gif"&gt; your text &lt;/td&gt; &lt;tr&gt;
&lt;/table&gt;


hope that works :)