how do i stop the it making new paragraphs every time i press ent.

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

Guest

how can i stop my frontpage from making gaps between lines?

this is how FP presents..a line gap between each line and unless its a
paragraph i dont want it like this.
I want it like this.

Unless i choose to make a paragraph as i have done so here!

thanks!
 
Use SHIFT + Enter for single line return.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
This is how HTML works. When you press return, you begin a new HTML
paragraph. If you look at the code, you will see this -

<p>here is the previous paragraph</p>
<p>here is what you get when you hit return</p>

and what you are seeing is the margin between those two adjacent paragraphs.
The very best way to change that would be with CSS, by redefining the margin
at the top and bottom of the p tag, which you can do easily in FP. If you
made that value zero, then there would be NO gap between the two adjacent
paragraphs. Adjust this value to suit your needs. By doing it this way,
the text between the p tag open and close would reflow normally as the page
is made narrow or wider, which is a good thing.

Alternatively, you could press shift-enter to insert a hard line break,
instead of enter (which inserts a paragraph). The hard line break does not
have margins, and so this will make your lines of text look just the same as
they would if you had changed to zero paragraph margins. BUT, the text
before and after the hard line break will not reflow as you make the browser
window narrower or wider. This can be a bad thing, because it can make your
text look kind of funny at some width settings.

Which you use is up to you....
 
In html that's called a line-break (the <br> tag). It is the default action
to create new paragraph in Frontpage (the <p> tag in code).

Use Shift-Enter to make the line break.
 

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

Back
Top