View Single Post
Old 06-08-2018, 04:51 PM   #4
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,797
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Wlan View Post
RbnJrg,

Its also a good technique, I use like this on one of my websites.

*{margin:0;padding:0;}
html{height:100%;background:url(cover.jpg) no-repeat center center fixed;background-size:contain;}
body{height:100%;}
In a website, those css properties work fine. But ebooks (and mainly ereaders) don't support quite well some of them. In this case, we can have issues with:

Code:
html, body {
     height: 100%;
}
I tell you I use those properties without troubles when I'm building an ebook for modern Kindle devices (those ones what support the .kf8 format) but some ereaders (Sony for example) that are based on a not very modern version of RMSDK, have troubles to handle especially "html {height: 100%;}".

But I think your code would work fine without "html, body {height: 100%;}". With those properties, under ADE , the cover won't reflow. Do the try

Regards
Rubén
RbnJrg is offline   Reply With Quote