Spacing on Front Page 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am importing documents from Word to Front Page and the spacing seems to be
getting messed up. When text was single spaced, for example giving a name,
address, and phone number enter was only hit once to create a single space
down from each line. Now there seems to be a double space and I cannot fix
it. I tried the <BP>, which worked in the past for me but for other
documents it isn't working.
 
<br>, not <bp>. The latter was an oil company (bought by Lukoil, as I
recall).

You can use CSS to control the top and bottom margins on your <p> tags that
are coming in from Word, e.g.,

<style type="text/css">
<!--
p { margin-top:0; margin-bottom:0; } /* adjust values to suit */
-->
</style>

Place this in the head of the page (immediately before </head>) and you will
see its effect instantly.

Alternatively, in FP2003, you can use the FORMAT menu option to create the
same rule for the p tag.
 
Back
Top