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
January 13, 2026 at 1:47 pm
#56748
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.