View Single Post
Old 06-08-2013, 03:17 AM   #122
RZetlin
Addict
RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.RZetlin ought to be getting tired of karma fortunes by now.
 
RZetlin's Avatar
 
Posts: 383
Karma: 3461302
Join Date: Mar 2013
Location: Canada
Device: Kobo Aura One, Kobo Glo, Kobo Aura HD (RIP)
Quote:
Originally Posted by DNSB View Post
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;
}
RZetlin is offline   Reply With Quote