How do you set FrontPage 2003 to single space for a global default

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

Guest

I am continually resetting FrontPage to single space. Can I set it to always
single space by default?
 
Nothing to do w/ FP
Html rules are that
- Enter is a link <p> tag (w/ a space after)
- Shift-Enter is a <br> tag (no space after)

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am continually resetting FrontPage to single space. Can I set it to always
| single space by default?
 
The default is to single space.
However, if you are referring to spacing following paragraph breaks
and headings, the default is to add a margin (equal to the height of a
line) between paragraphs.
Include some CSS in the <head> section to reduce the margin.

<style type-"text/css">
p {margin-top:1px; margin-bottom:1px;}
</style>

Change 1px above to suit your layout.
 
Back
Top