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

Reply To: Search bar not working on multisite subsite

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Search bar not working on multisite subsite Reply To: Search bar not working on multisite subsite

#18178
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

I think I know why. There is a custom CSS rule, I believe within the theme, that changes the text indent when any input placeholder is focused.

To resolve it, apply this code to your theme custom CSS field (if it supports it) or use the custom CSS field on the search plugin back-end.

[html]input.orig::-webkit-input-placeholder { /* Chrome/Opera/Safari */
text-indent: 0 !important;
}

input.orig::-moz-placeholder { /* Firefox 19+ */
text-indent: 0 !important;
}
input.orig:-ms-input-placeholder { /* IE 10+ */
text-indent: 0 !important;
}
input.orig:-moz-placeholder { /* Firefox 18- */
text-indent: 0 !important;
}[/html]