Quote:
Originally Posted by graycyn
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