View Single Post
Old 03-23-2022, 12:34 AM   #748
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 47,367
Karma: 171313058
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by koboread View Post
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?
Attached Files
File Type: epub 陈丹青-退步集.kepub.epub (128.9 KB, 104 views)

Last edited by DNSB; 03-23-2022 at 12:36 AM. Reason: Added comment about cleanup
DNSB is offline   Reply With Quote