Kobo right-aligns italicized
I have created an e-Pub that has no issues on other devices. On a Kobo though something very strange happens. In the attache image you can see that it has right aligned the italicized phrase at the end of the paragraph. It has also removed the period that is at the end of the sentence. This doesn’t happen with every italicized word/phrase but it does happen frequently thought the book. I put the XHTML and CSS below. Has anyone else had this experience with their ePubls and does anyone know why this happens?
Any insight is appreciated.
XHTML
<para>I shook my head back and forth as Rosie sat in her chair like Scheherazade, the famous Persian storyteller of <citetitle>1001 Nights</citetitle>.</para>
CSS
em, em.citetitle, em.emphasis, em.foreignphrase {
font-family: inherit;
font-style: italic;
font-weight: normal;
text-align: inherit;
}
|