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

Reply To: Words are still in "English" and I wish to translate them into French.

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Words are still in "English" and I wish to translate them into French. Reply To: Words are still in "English" and I wish to translate them into French.

#16364
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

It is most likely because the wrapper element, in which the search is placed in the theme, has a bottom property set to -59px on mobile views, so the search bar is ‘cut off’.

Try this custom CSS:

[html]@media only screen and (max-width: 767px) {
.mobile-header-mini #Top_bar .search_wrapper {
top: 0px !important;
bottom: auto !important;
}
}[/html]

Please note that this is outside of the scope of the plugin, so I cannot guarantee that my solution will work.