word break - unwanted

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

Guest

I have two words that I want to keep together on the same line (eg "Front
Page"). However, Front Page is placing them on different lines.

What can I do to keep them on the same line (apart from placing them on a
line of their own).
 
Type "Front" then Ctrl-Shift-space then "Page". That inserts a non-breaking
space between the two words, e.g.,

<p>Front&nbsp;Page</p>
 
force the line break before the word you want, then shift-enter to move both
to the next line.
 
Murray
That is perfect. Many thanks. I don't suppose you know how to stop a
hyphenated word from breaking: eg "speed-up"
 
Hey - that's a good one. I'm not sure if the ndash will work like a
non-breaking space or not, but you could try -

<p>... speed&#8211up ... </p>

and see....
 
Back
Top