mobile footer

Posted in: Newspaper
Post count: 12

Hi! I am having trouble conf my footer on mobile. It should look like I have it on desktop (only social icons) but it shows more than that. I even have a custom code for it:


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

So, how can I have only social icons on my mobile footer?

Tks

Gabi

Post count: 22421

Hello,

The mobile footer is different because you use the mobile theme plugin most likely: https://forum.tagdiv.com/the-mobile-theme/
If you want to have the exact same content as on desktop you will have to disable the plugin.

Thank you!

Post count: 12

Hi Bogdan!

No, pls, the mobile theme plugin is fantastic! I really can’t disable it!!

Is there a way to have just social networks icons on mobile footer using this plugin? I don’t know how to exclude “Brunno Giancoli” and “Sobre Nós” from it.

I don’t know where they are coming from. I don’t have a page or a post “Sobre Nós” (“About Us”).

Can you help me!!?

website: brunnogiancoli.com.br

Tks

Gabi

Post count: 22421

Hello,

Please add this css to your movile theme custom code section:

.td-footer-logo{
display:none;
}
.td-footer-description{
display:none;
}
.td-footer-social .block-title{
display:none;
}
.td-mobile-footer-wrap{
padding-top:1px;
padding-bottom: 38px;
}

There is no way to make it narrower unfortunately as there are containers there that hold the height of the footer and it will require code modifications in the php files in order to assign particular classes to these containers so they can be targeted with css. It will involve quite a bit of custom work just to get it a bit narrower.

Thank you!

Post count: 12

Hello,

It’s just perfect now!!!

Thank you, Bogdan!

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.