View Single Post
Old 03-30-2021, 02:55 PM   #19
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by RatherBWriting View Post
Hi! I am a newbie, working on my first epub and using Sigil.
Hey. Welcome to MobileRead! Glad to have you.

Quote:
Originally Posted by RatherBWriting View Post
I need help finding a few things, [...] how to insert more blank space between paragraphs on a page which has only three short paragraphs,
Do I have the perfect thread for you:

2019: "Problem adding extra lines in text"



But here's a simple answer:

You could do it Turtle91's way, or you could create individual classes:

HTML:

Code:
<p>This is an example.</p>
<p class="margintop">This will have a margin above.</p>
<p class="margintop">This will also have a margin above.</p>
<p>This will not have a margin above.</p>
CSS:

Code:
p.margintop {
	margin-top: 1em;
}
Quote:
Originally Posted by RatherBWriting View Post
and how to insert "separators" within a chapter when a new chapter is not called for, but there is a change in scene.
This is called a "scenebreak".

And just a few months ago—in Post #8 of the same the thread—I already preemptively answered you:

Quote:
Originally Posted by Tex2002ans View Post
For scene breaks, best to just Keep It Simple Stupid (KISS) with centered asterisks. See my 2019 post in "Why is it so hard to preserve blank lines?"
Quote:
Originally Posted by RatherBWriting View Post
how to number pages,
Depends on what you mean and what you're trying to accomplish.

Like others have said, ebooks don't really have "pages".

If you already have a Print book fully completed/designed, and you're trying to match "physical page #"<->"ebook page #", then there are plenty of topics discussing RPNs ("Real Page Numbers")... but I'd say that's a relatively advanced topic.

Last edited by Tex2002ans; 03-30-2021 at 04:50 PM.
Tex2002ans is offline   Reply With Quote