Add cells to bottom of table?

M

mommio2

I would like to add cells to the bottom of my layout table to exctend it
down, however, whenever I try to draw new cells, they come out on the right.
I have also tried splitting just one of my cells into rows, but somehow it
always splits its horizontal neighbors, too. What am I doing wrong?
Thanks!
 
T

Trevor Lawrence

mommio2 said:
I would like to add cells to the bottom of my layout table to exctend it
down, however, whenever I try to draw new cells, they come out on the
right. I have also tried splitting just one of my cells into rows, but
somehow it always splits its horizontal neighbors, too. What am I doing
wrong? Thanks!


I don't use FP in design mode, so I would just add (in code view)
<tr>
<td> column 1 text here</td>
<td> column 2 text here</td>
<td> column 3 text here</td>
etc.
</tr>

However, I just tried it. I positioned the cursor at the end of a row and
used
Table | Insert | Rows or Columns | Rows | Number of rows 1 | Below selection

It worked perfectly, even to the extent of copying the <td> tags from the
above row
 
M

mommio2

Thank you so much, Trevor! It worked!


Trevor Lawrence said:
I don't use FP in design mode, so I would just add (in code view)
<tr>
<td> column 1 text here</td>
<td> column 2 text here</td>
<td> column 3 text here</td>
etc.
</tr>

However, I just tried it. I positioned the cursor at the end of a row and
used
Table | Insert | Rows or Columns | Rows | Number of rows 1 | Below
selection

It worked perfectly, even to the extent of copying the <td> tags from the
above row
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top