When trying to enter text in a input field the toolbar overlaps the field, so that you can't see what you're typing.

A possible solution would be to use position: absolute instead of fixed for small screens.

Somewhat related to #1137920: Fix toolbar on small screen sizes and redesign toolbar for desktop

CommentFileSizeAuthor
toolbar-iphone.jpg53.16 KBhenrrrik

Comments

henrrrik’s picture

Like this:

@media only screen and (max-width:480px) {
  #toolbar {
    position: absolute;
  }
}
joshbgosh10592’s picture

What file/path do you make that change?

joshbgosh10592’s picture

Can anyone answer where that file is?

dcam’s picture

Issue summary: View changes
Status: Active » Closed (duplicate)

I'm pretty sure this is a duplicate of #2376185: Toolbar module's setting of padding-top css on html body is non-responsive. This issue may be older, but the other has had way more work. In fact, a patch nearly went into 7.36, but it was determined that more work was required.