How to hide some modules on mobile version?

Posted in: Newsmag
Post count: 171

How can I set some modules to not appear in mobiles (not tablets)?
Specially, I want to get rid of the slide on mobile version, the font size looks all cluttered.

Thanx in advance. 🙂

Post count: 7909

Hi,

You can use media queries and hide them via custom css or you can change font-size on mobile screens.
For example hide Big Grid(if you want to do this only for homepage use .home .td_block_big_grid ):

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

Big Grid – font size: http://screencast.com/t/f4JusFAe5e

@media (max-width: 767px){
.td-big-grid-post .entry-title a {
font-size: 10px;
}
}

Hope this helps!

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