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

Reply To: Default search text is off the grid on iPhone 6 iOS 9, and more…

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Default search text is off the grid on iPhone 6 iOS 9, and more… Reply To: Default search text is off the grid on iPhone 6 iOS 9, and more…

#6142
Ernest MarcinkoErnest Marcinko
Keymaster

I think I might have a solution for the text shift. It’s the placeholder styling causing it. Most likely the theme, I’m not sure, the inspector does not show these styles unfortunately.

Try this custom CSS:

[code]input.orig::-webkit-input-placeholder {
line-height: 24px !important;
}

input.orig:-moz-placeholder { /* Firefox 18- */
line-height: 24px !important;
}

input.orig::-moz-placeholder { /* Firefox 19+ */
line-height: 24px !important;
}

input.orig:-ms-input-placeholder {
line-height: 24px !important;
}[/code]

That should fix the line height issue 🙂

Thank you for your kind words!