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;
}