Disable sidebar on mobile

Posted in: Newspaper
Post count: 31

Hello,
I wanted to change my sidebar to the left, but has one problem she appear before the post in the cell – even read here in the forum you are working to resolve this.
Well, was wondering if you can disable or hide the siderbar only in mobile. That way I have the sidebar on the left on the desktop and my content first on mobile.

Thanks.

Post count: 1291

Hi,

You can doit using css:

@media (max-width: 767px){
.td-page-wrap .td-grid-wrap .span4 {
display: none;
}}

But this may not be so precise, if you have more span4 into the page content – http://screencast.com/t/80ac2b4m6yJs they will also be hidden.
The alternative would be to add a unique class on each template for the sidebar – http://screencast.com/t/gbFUaJLY
And use the following css:

@media (max-width: 767px){
.td-page-wrap .td-grid-wrap .my_left_sidebar {
display: none;
}}

The css should be added in Theme Panel -> Custom CSS.

Thank you, Emil G.

Post count: 31

this code worked perfectly:

media (max-width: 767px) {
.td-page-wrap .td-grid-wrap .span4 {
display: none;
}}

Thank U!

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