Quote:
Originally Posted by tmclough
Now, all I need to do is figure out how to lessen the first-line indentation in all my ebooks;
|
This is the section in your CSS that controls first line indent of a new paragraph.
Code:
p {
margin: 0px;
margin-top:0;
margin-bottom:0;
text-indent: 0.5em;
text-align: justify;
}
As you can see, I use 0.5em, which gives you a small but sufficiently noticeable indent. With CoolReader you can opt to use your own CSS in the /crengine folder, or use the one in the EPUB. With ADE you must modify the CSS in the EPUB. Whichever you choose, you can make your paragraph first line indents whatever you want them to be by editing the above code section in the CSS you use.