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

Reply To: Hide frontend search settings on mobile without forcing hovering

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Hide frontend search settings on mobile without forcing hovering Reply To: Hide frontend search settings on mobile without forcing hovering

#31719
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Sure, I recommend using a custom CSS:

@media only screen and (max-width: 480px) {
    .asp_s, .asp_sb {
        display: none !important;
    }
}

This should hide the settings on screen resolutions lower than 480px. You can change that of course to whatever width you desire.