TEXT SPACING PROBLEM

  • Thread starter Thread starter Guest
  • Start date Start date
When using FrontPage to edit an HTML document, and you press the ENTER key,
it creates an HTML paragraph, which double-spaces the area between lines in
the browser. Using SHIFT-ENTER will cause it to insert a single line break
tag instead.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
You've also got too many font tags which makes your code
unnecessarily large. You should be putting stuff like font
size and right justification in the style sheet.

Instead of:
<p align="right">
<font size="2">Polymer Parts Supplier</font></p>
<p align="right"><font size="2">Pensacola, Florida
</font></p>

You would have
<p class="somestyle">
Polymer Parts Supplier<br>
Pensacola, Florida</p>

Or you can clean up the HTML by highlighting sections and
applying the font attributes to the section and use Shift-
Enter to force breaks.
<p align="right">
<font size="2">Polymer Parts Supplier<br>
Pensacola said:
-----Original Message-----
I'm using FP 2003 with server extension. I am trying to delete a spacing
between the text lines and cannot seem to do it. I need your help on how to
perform this task. Thanks in advance.
www.LLOYDSFINANCIALSERVICES.net under
 
Back
Top