0

I would like to hide the banner that appears on Tumblr, both in the web version and in the mobile version. Maybe with CSS or html.

enter image description here

Thank you

Art
  • 1
  • 1
  • 1
    See here: https://stackoverflow.com/a/49656888/1238244 You need to add some css to your theme. I actually think there is a better way to do this in 2022. But it would involve hiding all of the tumblr iframes (some of these you might actually need to be able to process certain actions on your account). – lharby Sep 07 '22 at 17:07

1 Answers1

1

The banner uses the class name .follow-teaser. Just add the following to your css

.follow-teaser {display: none}

strawberrymilk
  • 392
  • 2
  • 10