Thank you so much @davidfor, this clarifies many things. This is not a book I'm writing, it's a book I'm tweaking to read it seamlessly.
I've set it up to 5 and it seems to work, but I had to dig for the right place... Just FYI, posting it here:
This is an example of a 3-line verse whose last word always ends up as an orphan (I've spread it over several lines here but it's continuous):
Code:
<p class="paraCenter" style="text-indent: 0%"><span>
<span xmlns="http://www.w3.org/1999/xhtml" class="koboSpan" id="kobo.75.1">The beauty of dried flowers, how can they</span>
<br/><span xmlns="http://www.w3.org/1999/xhtml" class="koboSpan" id="kobo.76.1">compare to</span>
<br/><span xmlns="http://www.w3.org/1999/xhtml" class="koboSpan" id="kobo.77.1">Him?</span></span></p>
So I added it there:
Code:
.paraCenter {
display: block;
text-align:center;
widows:5;
orphans:5;
Cheers!