[Koha-bugs] [Bug 10722] The log in bar "Log in to your account" floats incorrectly in the middle of the page on iPhone

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Sep 16 21:31:48 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10722

--- Comment #1 from Viktor Sarge <viktor.sarge at regionhalland.se> ---
I'm not fully aware of what internal plumbings of Koha might be affected.
Neither do I have the possibility to test for all possible configurations of
small screen devices. However it does seem to do the trick to change the
positioning from absolute with top:auto to top:0px.

I put this inside OpacMobileUserCSS: 

div#top-bar {
  bottom:-29px;
  display:block;
  left:0;
  overflow:hidden;
  position:absolute;
  top:0;
  z-index:auto;
}

I'm attaching a new mobile.css with the same change (changed to top:0px). As
stated above I'm not aware if mobile.css is a file generated by the Perl
scripts or a static file.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list