Quote:
Originally Posted by Darth_Bane
Thanks for the reply. How do you tell KindleGen how you want it done? My CSS seems to have the right things in it:
Code:
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.2em;
}
Am I missing something?
|
Here's how my CSS looks for regular paragraphs:
Code:
p {
margin-top:0;
margin-bottom:0;
margin-left:0;
margin-right:0;
text-indent:5%;
}
(I could've just specified
margin:0; instead of having all margins separate.)
If you haven't already, you may want to run all your CSS through the online validator:
http://jigsaw.w3.org/css-validator/. It's
possible there's CSS code elsewhere that's not well formed, and that's preventing your paragraph CSS from being rendered properly.
I hope you're able to figure it out.