@theducks: thanks, I had guessed it was some setting in Aldiko since the epub displayed fine in Adobe Digital Editions (and in Calibre Viewer) and only Aldiko indented the paragraphs. However I can't find anywhere in Aldiko that you set the paragraph indent preferences.
Anyhow I've fixed it, in fact I've found two ways to fix it. For books where I still have the HTML I've added a <style> tag:
Code:
<html>
<head>
<style>
P { text-indent: 0; }
</style>
</head>
<body>
etc
and for books where I no longer have the HTML I just unzipped the book and edited the stylesheet.css to change the .calibre2 style to:
Code:
.calibre2 {
display: block;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-indent: 0
}
and then zipped it up again.
JR