View Single Post
Old 03-19-2013, 03:42 PM   #19
DreamWriter
Books are brain food.
DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.DreamWriter ought to be getting tired of karma fortunes by now.
 
DreamWriter's Avatar
 
Posts: 2,950
Karma: 4836916
Join Date: Nov 2010
Location: U.S.
Device: Paperwhite · Fire HD6/HD8/HD10 · Galaxy Tab A7
Quote:
Originally Posted by Darth_Bane View Post
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.
DreamWriter is offline   Reply With Quote