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

Reply To: verticle align

#40015
Ernest MarcinkoErnest Marcinko
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.