In FP2002, Trouble with Text Margins in a Cell

A

AA Smith

For reasons I have yet to discern, all text in a rather wide cell is
significantly narrower than the cell margins. How can I expand the text
margins in a cell?
 
A

Andrew Murray

There are no "margins" in table cells. Use "cell padding". (under the
table/cell properties). I think it's actually under Table Properties.
 
A

AA Smith

Hi, Andrew!

Thanks so much for your valued feedback. I sincerely appreciate it.
 
M

Murray

That is a good suggestion but it may have unexpected results since it
applies equally to every cell in the table. A much better way (in my
opinion) would be to use CSS to hit the specific cell in question -

<style type="text/css">
<!--
..special { padding-left:25px; padding-right:25px; }
-->
</style>

and then this HTML -

<td class="special">This text will have 25px of padding left and right</td>
 

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

Similar Threads

expanding the margins on cells 9
Cell margins ? 3
Page Margins 2
Excel Typed text appears in wrong cell 0
Cell and table margins 1
runaway margins 4
Left-hand margin 5
internal margins on a text box 3

Top