Quote:
Originally Posted by Leonatus
But is it possible to keep at least some characters together that really should not be separated, such as the simple quote signs, represented here: › verrückt ‹ - in relation to the ensuing/preceding word?
|
Non-breaking spaces should work:
Insert > Special Character > nbsp
You might also occasionally see extra spaces if the value of the paragraph's
text-align property is set to
justify.
Try changing it to
left to see if it makes a difference. E.g.
Code:
<p style="text-align: left;">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
If it works, change the corresponding paragraph style in the stylesheet to:
Code:
p { text-align: left; }