I want to hide the ABOUT US element in the footer

Posted in: Newspaper
Post count: 376

I used my basic knowledge of CSS and determined it was this element using Inspector

<div class=”block-title”><span> </span></div>

When I delete it the ABOUT US text disappears and so does the extra horizontal space where it was.

<div class=”block-title”><span> </span></div>

Can I somehow override the code so that it doesn’t show this element?

Website — > https://www.InterestingAnswers.com

Post count: 22421

Hello,

If you want to remove the block titles, you can use this code:

.td-footer-wrapper .block-title span{
display:none
}

Thank you!

Post count: 376

I tried that and it didn’t work.

This is my custom CSS. The sniplet from above at the end of this:

https://pastebin.com/80WmNk9J

‘ABOUT US’ is still there. You can see it here –> https://www.InterestingAnswers.com

The font color of ‘ABOUT US’ is the same as the footer so you have to highlight it to see it.

Post count: 22421

Please clear your browser cache. I can no longer see the footer titles: https://www.screencast.com/t/AQ0NBPG4

Thanks

Post count: 376

Ya you are right. I thought I opened it in an incognito tab and it didn’t work. Oh well, it works. Thanks

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