Cell Properties

S

Sykigh A Trist

In FP 2003, and with a table, I have the option 'Set as default for new
tables." What about cell properties? I would like to set the alignment
beforehand instead of having to set the properties for cells each time I
make a new table. I don't see an option for that. Is there a way to do that?
Thanks.
 
R

Ronx

Not within FrontPage. But you can use CSS in each page (either embedded
in the <head> of the page or in an external style sheet)

<style type="text/css">
td {text-align: left; vertical-align: top;}
</style>


This sets defaults for every table cell in the page. Use inline styles
or classes to override this default.
 
S

Sykigh A Trist

Ronx, thanks a lot. Works just as well.

Ronx said:
Not within FrontPage. But you can use CSS in each page (either embedded
in the <head> of the page or in an external style sheet)

<style type="text/css">
td {text-align: left; vertical-align: top;}
</style>


This sets defaults for every table cell in the page. Use inline styles or
classes to override this default.

--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 

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