Quote:
Originally Posted by DNSB
Are you sure you were using kepub and not epub? With 2.5.0 and 2.5.1, kepub gave me the top and bottom menu bars. Even using images alone on the page, I seem to remember that I still got the top and bottom menu bars when I zoomed the image. At least with epub while I couldn't zoom the image, the bottom menu bar was the one that took up space.
Regards,
David
|
With 2.5 I used this css code for my Kepubs to get full screen with my comic images:
Code:
body {
height:100%;
width:100%;
padding: 0;
margin: 0;
}
img {
z-index: -999;
min-height: 100%;
min-width: 100%;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
}