How can I edit my mobile template?

Posted in: Newsmag
Post count: 32

First of all my mobile template is too busy. I’d like it to look like a blog. I don’t want slide-in related post and I don’t want a footer. Also the header/menubar for mobile is black and my logo is black too! So obviously its not showing at all!
Is it possible to edit the mobile to my taste?

Post count: 6535

Hi

The mobile version of your site is the same as the one for desktop, but styled differently, so you can use custom css in theme panel > custom css :

@media (max-width: 767px) {
.td-header-main-menu{
background-color: #AF2828!important;
}
}

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

Let me know how it goes and provide more details if this is not what you mean.

Thanks!

Post count: 32

Hi Thank uoi very much that did help. But the “more article box” still pops up on mobile version and I dont want that. My sidebar isnt smart on desktop mode too

Post count: 6535
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.