Spacing on Front Page 2003

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.
 
M

Murray

<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.
 

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