View Single Post
Old 08-16-2009, 08:31 PM   #18
bxrLvr
Connoisseur
bxrLvr doesn't litterbxrLvr doesn't litter
 
Posts: 63
Karma: 102
Join Date: Mar 2009
Location: California
Device: Kindle 3, iPad
Quote:
Originally Posted by WayneD View Post
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)
bxrLvr is offline   Reply With Quote