View Single Post
Old 10-31-2014, 10:56 AM   #5
exaltedwombat
Guru
exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.
 
Posts: 878
Karma: 2457540
Join Date: Nov 2011
Device: none
Apply this stylesheet to the introduction chapter, or embed it in the header. It tells a standard paragraph to have no indent, but a paragraph following another paragraph to take one. Using em rather than an absolute value allows for reader-changed text size.
Note the spaces before and after +

To keep the whole book using the same stylesheet, replace p with .p1 (or whatever) and use <p class="p1"> in that chapter. More work, though.

p{
text-indent:0;
}

p + p {
text-indent:1.8em;
}

Last edited by exaltedwombat; 10-31-2014 at 11:00 AM.
exaltedwombat is offline   Reply With Quote