Disable "More articles box" on mobile only?

Posted in: Newsmag
Post count: 93

I like this box but on cellphones takes up the whole screen and more. There should be a way to enable it on desktop, mobile or both. Don’t you think? If not please suggest me a mod to achieve this. Thanks!

Post count: 6535

HI

Try this css in theme panel > custom code > custom css to hide the more article box for mobile devices:

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

Thanks!

Post count: 93

thank you!

Post count: 2

What if you want to enable it to show on mobile?

Post count: 23312

Hello lamarwap,

Try the code below ->

@media(max-width: 768px){
.td-more-articles-box{
display: block!important;
}
}

Thanks for your understanding!

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.