View Single Post
Old 10-22-2019, 03:23 PM   #30
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,993
Karma: 147448039
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 Philogger View Post
Wow! That's pretty impressive.
Yeh, it looks better. Cleaner.
I'll have a look at it for sure.
Thanks
P
If there is not a lot of complex formatting, save as text and it's fairly easy to work with from there. You have to do a search/replace to put a <p></p> around every line. Then you can change that as needed and you can work on creating the CSS based on what needs to be done. I feel it would be a lot easier starting with a text format then cleaning up that horrible mess.

Code:
body {
widows: 1;
orphans: 1;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
text-align: justify;
}
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.2em
}
That is the CSS code I would start with. It gives you a good baseline and you don't have to add a class to any <p> that's just a regular paragraph with an indent.
JSWolf is online now   Reply With Quote