View Single Post
Old 08-31-2012, 10:46 AM   #11
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,077
Karma: 147983159
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Pumpkin Soup View Post
Thanks for the feedback, everyone! The reason I needed additional 'blank lines' is because the novelist marked certain passages with additional space between them, and I was trying to preserve that (obviously line breaks are non-functioning, but I made progress with paragraph styles).
You don't do section breaks with blank lines. You do it with CSS like this...

Code:
.spacebreak {
margin-top: 2em;
margin-bottom: 0;
text-indent: 0
}
Code:
<p class="spacebreak">The start of the next section</p>
JSWolf is offline   Reply With Quote