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

Reply To: Setting hidden in mobile

#20816
Ernest MarcinkoErnest Marcinko
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;
    }
}