Hide More Afticles box on mobile devices

Posted in: Newsmag
Post count: 61

Hey guys,

I’m enjoying your theme a lot so far, so compliments for that! A quick question in between, do you have a good way to disable the ‘More Articles’ box on mobile devices? I would like to show it on desktops only (or at least on devises with screens bigger than 768px. I don’t really like hiding it with CSS, so I would like to know if there is a good alternative you can recommend.

Thanks in advance for the information and have a great weekend!

Post count: 23312

Hello Torasko,

Try to use the code below and place it in Theme panel -> Custom CSS.

The code is ->

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

Thanks.

Post count: 61

The code works wonderfully, although I meant the ‘td-more-articles-box’.
Once again, thanks a lot! 🙂

  • This reply was modified 9 years by Torasko.
Post count: 23312

Hello Torasko,

For this feature, try the code below.

@media (max-width:767px){
.td-more-articles-box{
display:none;
}
}

Thanks for your understanding!

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