Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Setting hidden in mobile › Reply To: Setting hidden in mobile
January 17, 2019 at 4:33 pm
#20816
Keymaster
Hi Javi,
I see you use Visual Composer (?) there, and I think it allows hiding the column on mobile, maybe that is a possibility.
Otherwise you can try using a custom CSS, like so:
@media only screen and (max-width:480px) {
.asp_sb_4 {
display: none !important;
}
}