Quote:
Originally Posted by jhempel24
I know that I can put something like:
p {text-indent: 15px}
or something like that in the CSS file to indent the paragraphs, but for whatever reason on some epubs, it won't do it.
|
Maybe those epubs use <div> instead of <p>, or have some predefined class that overrides your CSS, like <p class="text"> with "p.text { text-indent: 0; }". You'd have to examine the code to see what's happening.