grouping, order and style

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

Guest

I can't get the option to put my shapes in order or group stuff together.
What did i mess up in setting that it is doing it this way. I also can't get
my paragraphs to stop double spacing... PLEASE help!
 
What do you mean "group stuff together", FP does not have a Group option
like Publisher does, if that's what you mean.

Enter creates a double line space, Shift+Enter creates a break or single
line space.

|I can't get the option to put my shapes in order or group stuff together.
| What did i mess up in setting that it is doing it this way. I also can't
get
| my paragraphs to stop double spacing... PLEASE help!
 
See http://www.rxs-enterprises.org/tests/vml-graphics.htm for some reasons
why you should not use shape-art, text-boxes,or WordArt on a website. The
shapes you are referring to are shape art.

In HTML paragraphs are always "double spaced". This makes the page more
readable on screen.
You can change this by using CSS to remove the top and bottom margins from
paragraphs, which removes the "double spacing" effect. But the page will
be more difficult to read. On screen, white space is good.

In code view,
change </head> to

<style type="text/css">
p {margin-top:0; margin-bottom:0;}
</style>
</head>
 
????
Are you using frontpage as a wordprocessor?

Are you using something other than Frontpage?

The double spacing issue is by design; the Enter key inserts the <p> HTML
tag (new paragraph).
Shift-Enter starts a new line (inserts the <br> HTML tag).
 
Back
Top