This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Mobile Layout Issue: Live Search Results Display Off-Screen / Cut Off

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Mobile Layout Issue: Live Search Results Display Off-Screen / Cut Off Reply To: Mobile Layout Issue: Live Search Results Display Off-Screen / Cut Off

#56748
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

Sure, I’m more than happy to help!

So, the main issue seems to be a negative left adjustment value on the document body whenever the side menu opens, and that tricks the calculation for the correct position.

I think there is likely a way to offset this without hiding the search bar. Try this:

@media only screen and (max-width: 767px) {
  .asp_r_1 {
    position: absolute !important
  }

  body.responsive-overflow-x-mobile {
    overflow-x: initial !important;
  }
}

This should force the correct display mode of the results and fix the calcuation too.