centre justify text

  • Thread starter Thread starter Michael Roberts
  • Start date Start date
M

Michael Roberts

running FP2000 vers 4. I left justify text and I can right justify text in a
cell. Anyone know how you can centre justify text so that the left hand
*and* the right hand sides are justified so that there is a neat straight
line on both the right and left hand sides? (if I centre justify, the text
is just centred but ragged on the left and right sides)
Michael Roberts
 
Insert a table, set to 90% width, then insert your text into this nested
table.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Specify a paragraph alignment of "Justify" to the text's
container (i.e. to the paragraph, table cell, or whatever
that immediately surrounds it.)

I don't remember if FP2000 has this option in its dialog
boxes, but you can try setting the alignment to soemthing
else and then changing it in HTML view.

Also, you should be aware that not all browsers support
this setting.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
This is a new feature that is a part of Frontpage 2002.

My suggestion would be to upgrade to the 2002 package which more than excels
the older (2000) In addition to this feature the best feature of 2002 is
the viewabliity of multiple pages at once. Check it our well worth it.

Michael Hemphill
 
Hi Michael,
add some CSS -
<style type="text/css">
p{
text-align:justify;
}
</p>
then all your paragraphs will be justified
 
Back
Top