Quote:
Originally Posted by WayneD
One thing that can be helpful is to supply a css override on the look-and-feel page. First, look at the HTML to see how paragraphs are marked. If they use something like <div class="foo">, you can add a rule to define a text-indentation for class "foo" by putting a period in front of the name:
Code:
.foo { text-indent: 2em }
If there is no class, you can try affecting all divs, but that may do too much indenting (it may be worth a try, though):
Code:
div {text-indent: 2em }
|
I had a similar issue (although when converting mobi to mobi), and i tried adding div {text-indent: 2em } and p {text-indent: 2em } in the css override, but there was still no indentation, however, when I used the remove spaces between paragraphs option, the issue was resolved. any ideas why the css override did not take? (i am using v0.6.7)