Disabling Widgets on Mobile

Posted in: Newspaper
Post count: 23

I am trying to hide some widgets on mobile. I am using a plugin (mobile detect) which uses shortcodes, but it doesn’t seem to work. I was wondering if there was a preferred method with the Newspaper theme. Thanks in advance.

Post count: 260

If you want to hide the sidebar on mobile you can if you use CSS to customize it. At the moment, on the mobile version the sidebar moves to the bottom of the content.
You can hide it by using this code:

@media
(max-width:767px){
.td-main-sidebar{
display:none!important
}
}
This applies if the sidebar is a standard sidebar from the widgets area.

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