View Single Post
Old 03-21-2022, 03:06 PM   #12
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,887
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by rcentros View Post
Would this be an actual image and wouldn't that increase the size of the book by quite a lot? Is this particular book there would probably be a over a thousand of these. Would the this code be applied at the top of the .css style sheet and just automatically work?

Thanks. Looks interesting, but not sure how I would apply it.
What that code does is give you a 2em blank space followed by a non-indented paragraph. What I do is the following.

Code:
<hr/>
<p class="TX1">“Look who I found,” said Julia cheerfully as they stepped into the Great Room.</p>
[code]hr {
margin-top: 1em;
margin-right: 40%;
margin-bottom: 0.9em;
margin-left: 40%;
border-top: 2px solid;
}
.TX1 {
margin-top: 0;
margin-bottom: 0;
text-align: justify;
text-indent: 0;
}[/quote]

What the code does is make a 1em blank space followed by a 20% long 2px wide line and then a .9em blank space. The next paragraph is not indented. It works well to denote section breaks.
JSWolf is offline   Reply With Quote