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
February 22, 2021 at 9:30 am
#31719
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.