View Single Post
Old 06-26-2011, 09:52 AM   #5
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,462
Karma: 145863170
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 dwig View Post
... also, you should follow the Kindle Publishing Guidelines and not specify a font or font size for the main text.

In addition, the indent along with top and bottom margins should be specified in em units rather than a fixed size unit so that the indent remains proportional to the text size when the reader chooses a different base text size. This would be more appropriate:

p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0;
margin-right:0;
margin-bottom:1em;
margin-left:0;
text-align:justify;
text-indent: 0;
}
Code:
p.MsoNormal, li.MsoNormal, div.MsoNormal {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    text-align: justify;
    text-indent: 1.2em
}
That would be better for a paragraph that one wants indented. Also, removing the excess space between the paragraphs makes it look nicer.
JSWolf is offline   Reply With Quote