Remove Footer from Mobile Theme

Posted in: Newspaper
Post count: 73

How to remove footer from mobile theme….we want to remove footer and want on sub-footer will be there in mobile theme…

Option is there for desktop but not for mobile theme..??

Also an – is coming after author name in mobile theme but not on desktop….

We are using the below CSS to remove – in desktop version….

.td-author-line{
display:none!important;
}

Post count: 22421

Hello,

You can remove the footer on mobile using this css:
@media(max-width:767px){
.td-footer-wrapper{
display:none!important;
}}

The – code needs to be added in the mobile theme css spot as well, not just the desktop filed. The mobile theme requires it’s own css: http://screencast.com/t/QzdUJw8C

Thank you!

Post count: 73

Hello Bogdan!

Please note that on desktop there is an option to hide footer so we are using that in theme panel…

I tried code provide by you at both places in desktop custom code and as well as mobile theme custom code but no help….footer is still there…

Post count: 22421

Hi,

Sorry about that, the code was incorrect. The mobile theme uses a different css class. Use this code instead:

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

Thanks.

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