View Single Post
Old 01-25-2019, 05:32 AM   #4
Pablo
Guru
Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.Pablo ought to be getting tired of karma fortunes by now.
 
Pablo's Avatar
 
Posts: 974
Karma: 4999999
Join Date: Mar 2009
Location: Rosario, Argentina
Device: SONY PRS-T2, Kindle Paperwhite 11th gen
Post

I depends on how you are managing that scene change. Please post the code of the paragraphs before and after the separation and the corresponding css styles.

The best way to manage scene changes IMO is to define a class in the stylesheet like:

Code:
.scenechange {
   text-indent: 0;
   text-align: center; 
   margin-top: 1em;
   margin-bottom: 1em;
}

Then in the body:

Code:
<p>Last paragraph in section 1</p>
<p class="scenechange">* * *</p>
<p class="first">First paragraph in section 2</p>
You need some visual indication of the scene change, a blank space is not a good idea because it may go unnoticed if it occurs at the bottom or the top of the page.
Pablo is offline   Reply With Quote