Footer info content only homepage

Posted in: Newspaper
Post count: 30

Hello, it is possibile show text in a “Footer Info ContentONLY homepage and not show in other section of the site?

Post count: 35449

Hi,

Yes you can, if you are using a footer page, you need to set a extra class on that column text/text ( element for text ) and set on that class a custom css.
-> https://www.screencast.com/t/2f5e9UxNOm10
.yourClassName{
display: none;
}
.home .yourClassName{
display: block;
}

If you are using widgets you need to set the css on the element that you set in footer.
-> https://tagdiv.com/how-to-create-custom-code-in-newspaper-theme/
If you nee help with this, let me know!

Thank you!

Post count: 30

i use footer widget. Not is possibile add “display:none” in a class td-footer-info in all pages except homepage?

Post count: 35449

Hi,

Yes, this can work too, here is an example
.td-footer-wrapper .footer-text-wrap{
display: none;
}
.home .td-footer-wrapper .footer-text-wrap{
display: block;
}

If you need help with this, just let me know, I’ll help you gladly!

Thank you!

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