View Single Post
Old 10-08-2020, 04:58 PM   #4
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,070
Karma: 147983159
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by DNSB View Post
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.
JSWolf is offline   Reply With Quote