Remove sidebar and other content from mobile Responsive website

Posted in: Newspaper
Post count: 22

Hi, my website is http://www.phonelane.com, I want to remove sidebar, footer etc when I’ll open my website on mobile phone. I only want display main content, because it reduce page Load time.

Post count: 12

Hi,

You can edit mainpage on Visual Composer for hide columns and rows.
http://oi62.tinypic.com/2nq7k9g.jpg

I don`t advise hide footer. But you can add this code in style.css for hide footer

@media (max-width: 767px) {
.td-footer-wrapper {
display: none;
}
.td-sub-footer-container {
display: none;
}
}

Post count: 1291

Hi,

Try the following css:

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

Thank you!

Post count: 22

Hi, if you open given url you’ll come know what i want to do not load on mobile phone theme. From visual composer we can hide side bar in only home page. I don’t have problem with problem with home page.

1. Only want to load content for every page not home page
2. Don’t want to load side bar
3. From footer i don’t want to load social, tags, recent comments. Please check url.
4.I just want lower footer which have links. Footer in black colour.

http://www.phonelane.com/phone-tips/lenovo-k3-note-dead-wont-start-showing-black-screen-and-unable-to-boot/

Post count: 22

Hi… Waiting for reply..

Post count: 6535

Hi

You can hide sidebar in every page from Visual Composer, but not post like this url for example: http://www.phonelane.com/phone-tips/lenovo-k3-note-dead-wont-start-showing-black-screen-and-unable-to-boot/
So if you want to hide the sidebar and footer from post you can use this css in theme panel > custom css:

@media (max-width: 767px){
.single-post .span4.td-post-sidebar{
display:none!important;
}
}
@media (max-width: 767px){
.single-post .td-footer-wrap{
display:none!important;
}
}

Thanks!

Post count: 22

Thank you, now I want to disable comments, similar article and user photo box which just above the similar article from mobile phone.

User photo box where you can see Joseph Kuhr user in given url.

http://www.phonelane.com/news/apple-watch-arrives-on-best-buy-from-7th-august-2015/

Post count: 22

Hey buddies waiting for your replies…

Post count: 22

hey brothers I am waiting for solution!

Post count: 6600

Hi Wasi,

We’re sorry for the long delay, we have missed your post by mistake.
I have pasted below the custom css you need to use: http://screencast.com/t/cm61IhjI

@media (max-width: 767px){
.comments, .similar-articles, .author-box-wrap {
display:none!important;
}
}

Sorry for the inconvenience!
Thanks

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