table code help

I use this code for a 2. sides table on my web page.
and eatch cell is what I want it to be how big I meen.

But the Dada in the Right Cell keeps Center Alineing itself
WHY????

Should the Dada in the Right Cell not Top Left Aline itself like the Dada in the Left side?????

<TABLE BORDER="5" cellspacing="5">
<TR>
<TD width="350" BGCOLOR="ff0033">

<font size="5" face="Times New Roman">
<B>ARTIST BIO.</B>
<BR>
Robert Philip Costo of Warrington, Pa., was born and raised in
Philadelphia PA., and shortly after birth, he was Diagnosed
Legally Blind. In spite of his visual handicaps, he received
his certification in Computer Graphics from Harcourt Learning
Direct and his certification in Computer Repair from Thomson
Education Direct. In addition to his computer savvy, Robert has
a passion for Charcoal Drawing. Because of this passion, his
drawings are extremely detailed with a touch of his personality
in each creation. Robert's disabilities have not diminished
his strong, positive mental attitude and incredible sense of humor
which have allowed him to excel in his Charcoal Drawing Classes.
All of Robert's Charcoal Drawings are originals and delightful!!
</FONT>
</TD>


<TD width="350" BGCOLOR="#000000">
<a href="persona.html"><font size="5" face="Times New Roman">
<B>CLICK HERE</A>
<BR>TO PUT A
PHOTO OF YOURSELF / YOUR PETS
<BR>
IN AN 11" x 8.5" CHARCOAL
ORIGINAL DRAWING. ALL ORDERS
ARE ONLY $25.00 AND ANYTHING
YOU CAN IMAGINE I CAN
CTREATE.
<B/>
</FONT>
</TD>
</TR>
</TABLE>
 

schw32m

New Member
Try this. You can use VALIGN and HALIGN in the TD tag to control the individual cell. You also forgot to call the text color in the right hand cell. With the black used in the left side it disappeared in the right. Also if you have a CENTER tag anywhere else in the body prior to the table it will affect the table's alignments as well.


Code:
<HTML>
<BODY>
<TABLE BORDER="5" cellspacing="5">
	<TR>
	<TD width="350" BGCOLOR="ff0033">
	<font size="5" face="Times New Roman">
		<B>ARTIST BIO.</B>
		<BR>
		Robert Philip Costo of Warrington, Pa., was born and raised in
		Philadelphia PA., and shortly after birth, he was Diagnosed
		Legally Blind. In spite of his visual handicaps, he received
		his certification in Computer Graphics from Harcourt Learning
		Direct and his certification in Computer Repair from Thomson
		Education Direct. In addition to his computer savvy, Robert has
		a passion for Charcoal Drawing. Because of this passion, his
		drawings are extremely detailed with a touch of his personality
		in each creation. Robert's disabilities have not diminished
		his strong, positive mental attitude and incredible sense of humor
		which have allowed him to excel in his Charcoal Drawing Classes.
		All of Robert's Charcoal Drawings are originals and delightful!!
	</FONT>
	</TD>
	<TD width="350" BGCOLOR="#000000" VALIGN=TOP>
		<a href="persona.html"><font size="5" face="Times New Roman">
		<B>CLICK HERE</B></A></FONT>
		<FONT color=#FFFFFF>
		<P><B>TO PUT A
		PHOTO OF YOURSELF / YOUR PETS
		<BR>
		IN AN 11" x 8.5" CHARCOAL
		ORIGINAL DRAWING. ALL ORDERS
		ARE ONLY $25.00 AND ANYTHING
		YOU CAN IMAGINE I CAN
		CREATE.
		</FONT></B>
	</TD>
	</TR>
</TABLE> 
</BODY>
</HTML>
 
Last edited:
Top