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

Reply To: Centered Search Text

#7847
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Paul,

It’s a bit hard to tell wihtout actually seeing the problem, but from what I see on the screenshot I’m guessing that the theme probably applies a higher specificity margin, padding or line height to input fields, including the plugin input.

If that’s the case, then this custom CSS snippet should solve the problem:

[html]input.orig {
margin: -1px 0 0 -4px !important;
padding: 0 !important;
padding-top: 2px !important;
line-height: normal !important;
}[/html]

Let me know how it goes!