Link to home
Start Free TrialLog in
Avatar of lonewolf
lonewolf

asked on

Back Ground in a Cell

I'm trying to design a banner for a webring. I would like to know how I make it so that the banner has a different back ground than the sites back ground.If you wish to view the banner so far, go to http://www.excel.net/~clewis/joindirt.htm
Also please let me know if I can have different colors with in each box in the banner. How do I write or what code do I add to do this? Thanx a bunch.
 Here's the HTML so far for the banner.

<!----------END OF LONE WOLF'S DIRT TRACK WEB RING--------------->
<!--------------------STOP TABLE CUT HERE------------------------>


<CENTER><TABLE BORDER=10 CELLSPACING=3 CELLPADDING=3 WIDTH="550" >
<TR>
<TH><FONT SIZE=+0><FONT COLOR="#000000">Asphalt is for getting there. Dirt is for Racin'. </FONT> </FONT></TH>
</TR>

<TR>
<TH><FONT SIZE=-1><FONT COLOR="#FF0000">This <A HREF="http://www.excel.net/~clewis/lonewo~1.htm" target="_top">Lone
Wolf's Dirt Trackin'</A> site is owned by
<A HREF="mailto:SITE_OWNER_EMAIL">Your_Name_Here</A>. </FONT></FONT></TH>
</TR>

<TR>
<TH>
<A HREF="http://www.excel.net/~clewis/lonewo~1.htm" target="_top"><IMG SRC="http://www.excel.net/~clewis/78car.jpg" HEIGHT=125 WIDTH=200 ALIGN=LEFT></A>



<FONT SIZE=-1><A HREF="http://www.webring.org/cgi-bin/webring?ring=lonewolf78;id=_SITE_ID_HERE_;next" target="_top">
<IMG SRC="http://www.excel.net/~clewis/racin.jpg" HEIGHT=125 WIDTH=200 ALIGN=RIGHT></A>
</FONT></TH>
</TR>

<TR>
<TH><FONT SIZE=-1><FONT COLOR="#FF0000">Want to join the <A HREF="http://www.excel.net/~clewis/dirtjoin.htm" target="_top">Lone
Wolf's Dirt Trackin'</A>? </FONT> </FONT> </TH>
</TR>



<TR>
<TH><FONT SIZE=-1><FONT COLOR="#FF0000">The thrill of speed will eventually overcome the fear
of death ! </FONT></FONT></TH>
</TR>

<TR>
<TH><FONT SIZE=+0>

 [<A HREF="http://www.webring.org/cgi-bin/webring?ring=78lonewolf;id=_SITE_ID_HERE_;prev" target="_top">Prev</A>]


 [<A HREF="http://www.webring.org/cgi-bin/webring?random;ring=78lonewolf" target="_top">Random</A>]
 [<A HREF="http://www.webring.org/cgi-bin/webring?ring=78lonewolf;list" target="_top">List
Sites</A>]

 [<A HREF="http://www.webring.org/cgi-bin/webring?ring=78lonewolf;id=_SITE_ID_HERE_;next5" target="_top">
Next5</A>]

 [<A HREF="http://www.webring.org/cgi-bin/webring?ring=78lonewolf;id=_SITE_ID_HERE_;next" target="_top">Next</A>]

</FONT></TH>
</TR>
</TABLE></CENTER>

<!----------END OF LONE WOLF'S DIRT TRACK WEB RING--------------->
<!------------------STOP TABLE CUT HERE--------------------->

ASKER CERTIFIED SOLUTION
Avatar of jhurst
jhurst

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jhurst
jhurst

I agree that the TD is more to spec than TH although having looked at source for Netscape and tested MSIE and NN it seems that the only realy difference is the font.  I also agree that good coding says used TD for Data and TH for headings.  I also agree that the color can be specified in the <TABLE tag.  

As to which browsers it works with.  We develop code and I know that it works with NN and MSIE 3 &4 but who knows with anything earlier.

Avatar of lonewolf

ASKER

Great,but where do I insert the "Code Border=0"
Thanx a bunch

http://www.excel.net/~clewis/joindirt.htm
I would also like to know what colors I can use for backgrounds and is it possible to use a jpg type back ground?
I use notepad and write everything by hand. I had hoped that doing it this way would either help me to learn or force me to learn. I have a tendency to do everything the hard way. I have been running a very successful ring for about a year now.It's probably a very simple one, none-the-less it works well. I rely on a lot of help from the good people on here to help me out. I don't have any close buddies that are into this stuff so I find myself doing these types of things on my own. And with a limited amount of time to play with this stuff I get frustrated and ask alot of simple dumb questions on here. I got my first taste of html with netscape 3.0 gold. Where do I find WYSIWYG and is it free. I have a very low budget for this stuff.Oh, by the way, you didn't answer my question abot whether or not I can use jpg type images as backgrounds. Thanx for being patient with me.
The best way (if you like it the hard way) to edit HTML pages is a text based editor like notepad. WYSIWYG is much easier though, but you never get clean code. They all produce huge codes and your file is much larger than it has to be - like that typical font construction:
<FONT SIZE=+0><FONT COLOR="#000000"><FONT FACE="Arial,Helvetica">...</FONT></FONT></FONT>

You can do it all in one tag like

<FONT SIZE=+0 COLOR="#000000" FACE="Arial,Helvetica">...</FONT>

If you got a table with lots of cells (and you have to specify the font tag in EVERY cell) this can save a lot of bytes to download when viewing you page.
Ok, sounds like good advice.One last question. What can you tell me about these transparent images. I understand that you can have a image that has a transparent background. I use IPPLUS for image alterations. I don't see anything about transparencies in this package. Do I need a specific software package for this?