To remove the Tumblr Follow button and logo at the top right of your site you’ll need to access Advanced Options.
You can find this by clicking Customize then scrolling down till you see Advanced Options.


Find the “Promote Tumblr” toggle and turn it off.
In the Custom CSS box copy & paste this code.
body > .tmblr-iframe.tmblr-iframe–unified-controls { display:none !important; opacity:0 !important; }
Manual method
You can find this by clicking Customize/Edit Theme and then hit Edit HTML

We need to paste a piece of code under the <body> tag. To do this click anywhere inside the HTML and use the following commands to search:
- On Mac: cmd + f
- On Windows: ctrl + f
In the left of the search box paste in: <div class=’customize-demo demo-note’>
Once you’ve found this section create a new line on top using the enter button and paste the code below inside. It should look like this:
<style type="text/css"> body .tmblr-iframe--follow-teaser, body .tmblr-iframe--gdpr-banner, .tmblr-iframe--unified-controls{ display:none !important; } </style>