Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Mobile display problem › Reply To: Mobile display problem
February 20, 2020 at 11:02 am
#25897
Keymaster
I honestly don’t know, as I would have to see the issue first. The table-cell vertical alignment method can be problematic on some devices. If you can, try using the flexbox instead:
.parent {
display: flex;
flex-direction: column;
justify-content: center;
}
I suggest placing the plugin shortcode into a <div> container so it is wrapped in one, and then applying the code above to the parent.