EPUB->AZW3 disrupts chapter headers
So when I have an EPUB with chapter header decorations - usually an image that goes above and/or below the chapter name - the header decoration always gets shunted to the right once it's in AZW3 and on my kindle.
For example
.chapter-title-decoration-below-inner {
display: inline-block;
height: 0.4833in;
width: 1.1967in;
margin: 0;
padding: 0
}
It displays properly when I check the AZW3 in the Calibre viewer, and on Kindle For PC. But once the file is on my kindle, the header is on the right, with part of the image not visible because it's been shoved a bit off the page.
It's always a problem with the display: inline-block. Sometimes removing it makes the image display properly, but often not.
My output profile is set to my kindle model - Paperwhite 3. I've tried aligning the images to center (with the display: inline-block deleted, and with it present), but that didn't do it. I'm not sure what else to try, or where the problem might be.
|