Quote:
Originally Posted by kovidgoyal
theres no way for conversion to selectively affect some paras and not others. if you want to simply change text-indent you can use the extra css setting, with
p { text-indent: 1em !important }
|
But the problem is that a lot of eBooks use p without an indent and then they use a class for for p to define p including indents. So when there are other classes that are used with p such as one that has a center, sometimes they have no defined indent of 0 and if you do add an indent to p, you then take these classes that should have no indent and add an indent to them. If you are going to add an indent to p, you have to make sure all the classes that should have an indent of 0 have one.