Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › verticle align › Reply To: verticle align
November 18, 2022 at 9:32 am
#40015
Keymaster
Hi,
It should be aligned to the center automatically. I checked the URL you provided, and there is a min-height attribute added to the search input by the theme default CSS, so the height of the input box is higher as the container, and it appears misaligned.
You can resolve it by using this custom CSS:
.asp_m input.orig {
min-height: unset;
}
That will resolve the issue.