Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 08-28-2023, 08:30 AM   #1
Jake Stoddard
Member
Jake Stoddard began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Aug 2023
Location: New Hampshire
Device: none
Active book thumbnail not shown in Kindle

In my Android Kindle app, after opening my book and then going back to the library, the cover thumbnail isn't shown at the bottom center of the screen. However, after doing the same thing with my friend's book, her cover thumbnail is shown. (See the attached image.)

Both books were side-loaded, and my intention is that my book will always be side-loaded.

My epub was generated by Atticus. My friend's was generated by Vellum.

I compared the epubs and tried some things, including:
  • Adding the cover-image property to the cover element in my content.opf file (it had been missing)
  • Removed the '<meta name="cover" content="image_cover" />' element from my content.opf file (because Vellum's epub didn't have it)

Neither change fixed my issue.

Any ideas?
Attached Thumbnails
Click image for larger version

Name:	Screenshot_Kindle_thumbnail_Atticus_vs_Vellum.jpg
Views:	80
Size:	496.7 KB
ID:	203407  
Jake Stoddard is offline   Reply With Quote
Old 08-28-2023, 09:16 AM   #2
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: 74,049
Karma: 129333562
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Can you post the OPF, cover HTML, and the relevant CSS code for this Atticus generated ePub?
JSWolf is offline   Reply With Quote
Old 08-28-2023, 12:24 PM   #3
Jake Stoddard
Member
Jake Stoddard began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Aug 2023
Location: New Hampshire
Device: none
content.opf attached.

There isn't a cover HTML. Should there be?

I'm not sure what CSS is relevant. I attached the whole file.
Attached Files
File Type: opf content.opf (18.0 KB, 48 views)
File Type: txt style.css.txt (24.4 KB, 46 views)
Jake Stoddard is offline   Reply With Quote
Old 08-29-2023, 05:34 PM   #4
azimuth
Enthusiast
azimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with others
 
Posts: 33
Karma: 2538
Join Date: Aug 2023
Location: NW US
Device: none
I assume this is your cover .xhtml page (just from glancing at your content.OPF file) -- see below.
If not, it might be worth adding an actual .xhtml page for it.

Code:
<manifest>
<item id="content_0_item_0" href="64e747ce5301520dc5af4bc7.xhtml" media-type="application/xhtml+xml" />
</manifest>
Code:
<spine toc="ncx">
	<itemref idref="content_0_item_0" />
</spine>
azimuth is offline   Reply With Quote
Old 08-29-2023, 10:13 PM   #5
Jake Stoddard
Member
Jake Stoddard began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Aug 2023
Location: New Hampshire
Device: none
Ah, thanks. That's helpful.

I didn't have a title page. I added one and re-exported. All the UUIDs changed. So here are all three files from the new export.

I compared my title page with my friend's title page generated by Vellum. Neither references the cover image.
Attached Files
File Type: opf content.opf (11.1 KB, 54 views)
File Type: txt style.css.txt (24.4 KB, 45 views)
File Type: txt BnAGs3TD16jroXwh.xhtml.txt (805 Bytes, 43 views)
Jake Stoddard is offline   Reply With Quote
Old 08-30-2023, 09:31 PM   #6
azimuth
Enthusiast
azimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with othersazimuth plays well with others
 
Posts: 33
Karma: 2538
Join Date: Aug 2023
Location: NW US
Device: none
Ok, so the "content_0_item_0" is the title page. Then I'd suggest adding the following in "<spine>" in content.OPF file as it typically is the first item in that 'spine' string. We are suggesting this so as to hopefully resolve why the thumbnail cover image is not rendering.

<spine>
<itemref idref="cover_image"/>
</spine>

In <metadata> almost every epub OPF file that I've glanced thru, it has the part you removed:
'<meta name="cover" content="image_cover" />'

**your OPF file looks much cleaner now (all of it is well compacted, and much easier to analyze).

Last edited by azimuth; 08-30-2023 at 09:36 PM.
azimuth is offline   Reply With Quote
Old 08-31-2023, 07:52 AM   #7
Jake Stoddard
Member
Jake Stoddard began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Aug 2023
Location: New Hampshire
Device: none
Good idea. It did help the experience on non-Kindle apps because they didn't show a cover image inside the book.

Unfortunately, the Kindle thumbnail at the bottom of the app is still that white, auto-generated thing.

Quote:
Originally Posted by azimuth View Post
**your OPF file looks much cleaner now (all of it is well compacted, and much easier to analyze).
Heh, yeah. I ran it through: "xmllint -format". So much better.
Jake Stoddard is offline   Reply With Quote
Old 09-01-2023, 11:51 PM   #8
Jake Stoddard
Member
Jake Stoddard began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Aug 2023
Location: New Hampshire
Device: none
Mystery solved!

My cover image was too small: 550x850

Bigger images worked: 1200x1800 and also 1200x1855
Jake Stoddard is offline   Reply With Quote
Old 09-02-2023, 10:39 AM   #9
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: 35,513
Karma: 145557716
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Jake Stoddard View Post
Mystery solved!

My cover image was too small: 550x850

Bigger images worked: 1200x1800 and also 1200x1855
See Cover Image Guidelines

625x1000 is the minimum.
DNSB is offline   Reply With Quote
Old 09-02-2023, 11:26 AM   #10
Jake Stoddard
Member
Jake Stoddard began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Aug 2023
Location: New Hampshire
Device: none
Quote:
Originally Posted by DNSB View Post
See Cover Image Guidelines

625x1000 is the minimum.
Jake Stoddard is offline   Reply With Quote
Reply

Tags
atticus, cover thumbnail, epub, kindle, vellum


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Stop Amazon downloading original Kindle book thumbnail. Tomifonication Amazon Kindle 2 08-10-2019 01:49 AM
Send to Kindle - Book Cover (Thumbnail) robertpolson Amazon Kindle 30 10-20-2017 09:25 PM
Book thumbnail resize duytrung Library Management 2 12-28-2014 08:31 PM
This book is not active yet. highbaker Bookeen 2 06-05-2008 02:25 AM


All times are GMT -4. The time now is 12:09 PM.


MobileRead.com is a privately owned, operated and funded community.