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.
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;
}
}
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.
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!
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/
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