View Single Post
Old 01-29-2008, 08:13 PM   #14
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,845
Karma: 150249631
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
The indent problem I think I just figured out....

Code:
.para	{
	display: block; 
	margin-bottom: 0%;	
	text-indent:5%;
			}
html2lrf is not respecting the 5%.

But if I replace the 5% with 20px, it works.

Code:
.para	{
	display: block; 
	margin-bottom: 0%;	
	text-indent:20px;
			}
JSWolf is online now   Reply With Quote