Thread: Aura HD 2nd Aura must go back
View Single Post
Old 06-24-2013, 11:31 PM   #7
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: 46,600
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by graycyn View Post
I haven't seen anyone else reporting the sleep cover display as a bug, so I don't know what is going on there, sigh. Turning off the reader and turning back on again did not solve it, that much I know.
I'd tend to suspect that something was glitched during the firmware upgrade as I haven't seen the left aligned effect you are mentioning. Which means a factory reset and reload.

I've added the cover page and stylesheet info that I'm using. This is set for a 765x1020 image, change dimensions in both spots to match your image. The number of times that margins and padding are set to 0 is a bit silly but it seems to make the cover display work on multiple devices that love to disregard some bits and pieces.


Code:
  
<style type="text/css">
@page {padding: 0; margin:0}
            body { text-align: center; padding:0; margin: 0; }
</style>
</head>

<body>
  <div class="svg_wrapper">
    <svg xmlns="http://www.w3.org/2000/svg" height="100%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 765 1020" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink">
      <image height="1020" width="765" xlink:href="../Images/cover.jpg"></image>
    </svg>
  </div>


.svg_wrapper {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    }
Regards,
David

Last edited by DNSB; 06-24-2013 at 11:36 PM.
DNSB is offline   Reply With Quote