View Single Post
Old 07-16-2013, 07:04 PM   #5
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,527
Karma: 6613969
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by ficbot View Post
So is this in the CSS? And then I mark it somehow in the text itself?
What theducks wanted to say you is that in your .css stylesheet you must write the following:

Code:
.scenebreak {
    margin: 2em 0; /* here instead of 2em you can use others values at your will */
    text-indent: 0;
    text-align: center;
}
And in your .html file, where you want to have the paragraph separated, you must write the following:

Code:
<p>Your Paragraph 1...</p>

<p class="scenebreak">*&nbsp;*&nbsp;*</p>

<p>Your New Paragraph...</p>
Also, supress all <br/> tags that you had used to separate the paragraph; the class "scenebreak" will do all the work.

Regards
Rubén

Last edited by RbnJrg; 07-16-2013 at 07:07 PM.
RbnJrg is offline   Reply With Quote