single table cell margin

hi there!
is it possible to give a single cell of a table a margin that the inserted text will not begin right at the cell border?

thx in advance

ray


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

There is a setting for cell padding in the inspector with your table selected - use that instead of margin.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

hi david,

thank you for your help. but i only need one cell (the one with the text) with that. the other cells (pictures) shouldn’t have a space between the content and their borders …

ray


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

OK then you will need to add a class to your cell and style it that way.

Select the cell that you want to add padding to.

In the Inspector select the cell selector that looks like a picture frame.

In the Table Cell section there is an Extend button

Click that and add a new name/value pair of class/padme

Do this to any cell that you want to add padding to.

Now copy/paste the following code into Page>Html Markup in the before section

<style type="text/css">
.padme { padding:5px }
</style>

Adjust 5px to suit whatever padding amount you want.

Preview/Preview in Browser to test

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

hey dave,

thanks a lot! that’s what i’m looking for. i know it from dw but don’t know how to do it in freeway.
to follow your example i did a few classes more for other cells depending their content
e.g.

.paddingleft { padding-left:10px } .paddingbottom { padding-bottom:10px }

cheers & greez

ray


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options