View Full Version : Centering


dolceamore
08-08-2004, 03:47 AM
I have a basic table with two cells, and I want the entire thing centered. But I don;t want the information in cell 1 to be centered. Is there any way to do that?

Here's the code I'm using:

<center>
<table border="0" cellpadding="1" cellspacing="10" width="600">
<tr>
<td valign="top" width="300">
Information in Cell 1
</td>
<td width="300">Picture in Cell 2</td>
</tr>
</table>
</center>

kittycat
08-08-2004, 04:06 AM
Add align="left/right" to the td tag

dolceamore
08-08-2004, 04:27 AM
It worked. Thanks so much!