View Single Post
Old 04-15-2022, 04:08 AM   #5
slowsmile
Witchman
slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.slowsmile ought to be getting tired of karma fortunes by now.
 
Posts: 628
Karma: 788808
Join Date: May 2013
Location: Philippines
Device: Android S5
Quote:
"I have converted an ODT text manuscript with images to an epub file
When viewed on Kindle Previewer 3 the images appear left indented not centered as they appeared in the original manuscript."
There are two ways to fix that problem. For the first way, just export your ODT doc to Word doc format and then convert the Word doc to epub format. In epub format you could then write a simple style for the CSS in Sigil like this:

p.center {
text-align: center;
}

Use the above style within HTML images like this:

Code:
<p class='center'>
    <img alt="img01" src="../Images/Title_Image.jpg">
</p>
The second way to quickly center each of your epub images in Sigil would be to click and highlight each image in the Sigil html editor in turn and then just click the 'Align Text Center' button in the Sigil Toolbar.

Last edited by slowsmile; 04-15-2022 at 04:12 AM.
slowsmile is offline   Reply With Quote