This topic is locked

vertical align in table cell?

8/21/2007 12:26:38 AM
PHPRunner General questions
J
jack1438 author

Is there any way to set the vertical alignment in a table cell so that the value starts at the top of the table cell instead of the center of the cell?
I am making a memo page and want the body of text to be in a table cell and to have a fixed height so that the footer ends up positioned right on the page.
Thanks

J
Jane 8/21/2007

Hi,
to set up vertical alignment in a table cell proceed to the Visual Editor tab, click on the field, switch to HTML mode, find this code:

<TD>{$row.1FieldName_value} </TD>

and replace it with this one:

<TD value=top>{$row.1FieldName_value} </TD>