Quote:
Originally Posted by koboread
Feedback: my device is glo HD and has upgraded the latest firmware. When I read one of the kepub books, the interface stopped working and can't turn the page. However, it's no problem to use Plato to read. Is the system's default firmware not perfect enough to support kepub?how to fixed it?
https://github.com/pgaskin/NickelMenu/issues/121
|
I'm rather puzzled. What does your problem have to do with NickelMenu? As for your sample ebook, it's is a bit of a disaster. You have:
Code:
<style type="text/css" class="kobostylehacks">div#book-inner { margin-top: 0; margin-bottom: 0;}</style>
and:
Code:
<p class="calibre6" style="margin:0pt; border:0pt; height:1em"><span class="koboSpan" id="kobo.2.1">*</span></p>
Using a class tag inside a style tag is not a permitted function though you might try something like:
Code:
<style id="kobostylehacks" type="text/css">div#book-inner * { margin-top: 0 !important; margin-bottom: 0 !important;}</style>
<style type="text/css" id="koboSpanStyle">.koboSpan { -webkit-text-combine: inherit; }</style>
Since Kobo's firmware is not happy with Garbage In, I did some quick cleanup on the file and it seems to work on my Kobo. Could you try the attached file and see if it works?