How to hide related articles, author box and comments in mobile website

Posted in: Newspaper
Post count: 2

Hi there,

I’d like to hide related articles, author box and comments in my mobile website. Could you tell me how to use custom CSS to do that?

They are beautiful in my desktop website. But i want to hide them to increase speed in mobile devices.

Thank you very much for your help!

Best

Post count: 23312

Hello liangfengjing,

Please try the code below and place it in Theme panel->Cusotm CSS area.

The code is ->

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

Thanks for your understanding!

Post count: 2

Hi Catalin,

Thank you very much for your quick response! The code works very well.

Best

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