How to disable the big homepage blocks in Mobile view

Posted in: Newsmag
Post count: 65

Hi,
How to disable the big home page feature 5 content blocks in mobile view.

Note: I want to disable it only in Mobile not in Tablets.

Thanks & Regards
Debarup

Post count: 7909

Hi,

You can use media queries to hide it mobile view:

@media (max-width: 767px) {
.td_block_big_grid {
display: none;
}
}

Just paste the code in Theme Panel > Custom Css and also if you want to hide the Big Grid only on home page please add .home class – .home .td_block_big_grid

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.