Quote:
Originally Posted by DNSB
What is the code immediately prior to the missing text on your Kobo? I have seen issues with some epub creation tools when creating epub3s and using a <hr> for the scene break where a Kobo ereader using the RMSDK epub2 renderer will lose chunks of text. Sending it as a kepub.epub to use the epub3 renderer is a quick workaround for testing if that is the issue.
If the book is not copyrighted, you can attach it to a message here for people to take a look at. If it is copyrighted, use the ScrambleEbook plugin and then attach the scrambled output file to a message here. That way, the entire CSS can be seen as it applies to the area of missing text.
|
I've been using an <hr/> for the scene break with RMSDK and it works perfectly.
HTML code is...
Code:
<hr/>
<p class="noindent">This is yet another paragraph.</p>
CSS code is...
Code:
hr {
margin-top: 1em;
margin-right: 40%;
margin-bottom: 0.8em;
margin-left: 40%;
border-top: 2px solid;
}
But it is a good idea to see the relevant CSS code and the HTML code.