PDA

View Full Version : aligning table content (not what you think)


Mgkeeper
08-18-2002, 02:13 AM
Hi,

On my sample page:

http://www.majvegeta.com/aboutus.shtml

I'm using a table for the content of my ssi. But see how the text is really close to the left side of the table?? How do I move it away, like 10 or 15 pixels??

MCookie
08-18-2002, 02:37 AM
<td style="padding-left:15px;"> ... </td>

or, text in p tag:

<p style="padding:15px;"> ... </p>

or, also in p tag:

<p style="margin-left:15px;"> ... </p>