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 Marcinko
Ernest 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:

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

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

Best,
Ernest Marcinko

If you like my products, don't forget to rate them on codecanyon :)