View Single Post
Old 04-21-2018, 12:19 PM   #6
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,125
Karma: 169815798
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by phossler View Post
Thanks for checking

I figured it was an ADE issue
I took a quick look at your epub file and you might want to make a change in the code used for displaying the cover image. The current code is:

Code:
    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="100%" height="100%" viewBox="0 0 306 423" preserveAspectRatio="none">
      <image width="306" height="423" xlink:href="../Images/cover.jpg"/>
    </svg>
I would recomment changing it to:

Code:
    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="100%" height="100%" viewBox="0 0 306 423" preserveAspectRatio="xMidYMid meet">
      <image width="306" height="423" xlink:href="../Images/cover.jpg"/>
    </svg>
This change in preserveAspectRatio should improve how your cover image displays. Could you check the attached modification of your epub3 and let me know if this is an improvement.
Attached Files
File Type: epub epub3-The Adventures of Sherlock Holmes.epub (683.3 KB, 247 views)

Last edited by DNSB; 04-21-2018 at 12:21 PM. Reason: Fat fingers cause typos...
DNSB is offline   Reply With Quote