David
asked 8 years ago

The search function takes up the whole screen, which is normally fine. However, because of the way that iOS handles it, the keyboard actually hides the search field. Obviously, this is bad and very confusing for iOS users. How can we fix it?

1 Answers
DominicStaff
answered 8 years ago

Hi,
To resolve this issue, you can add the following code to the style.css file:

@media (max-width: 768px) {
.site-header .search-modal .search-form {
    position: absolute;
    top: 0px;
    height: auto;
    width: 100%;
    z-index: 99999;
}
}

Hope this helps !

david rummelhoff
replied 8 years ago

Yeah, I’m satisfied with that solution. Thanks.

Powered by DW Question & Answer Pro