Removing TumblrĀ āFollow Meā Button (Fix)
I have seen many posts about removing the TumblrĀ āFollow Meā button link. Many are out of date, too extreme or simple doesnāt work.
Option 1
I know tumblr does give you the option located in Ā āAdvanced Options ā to toggle betweenĀ āPromote Tumblrā (For the Follow me buttonā
-This work for some theme not all, In my case it didnt
Option 2
You can manually edit the HTML code and use the extreme method
Step 1
Log in to your Tumblr account, and click the name of the blog you want to edit.
Step 2
Click āCustomize Appearanceā from the right menu.
Step 3
Click the āEdit HTMLā button in the left menu under your theme name. Tumblr will open a new frame that displays the HTML coding for your blogās theme.
Step 4
Find the tag ā{CustomCSS}ā, Ā you can press the "Ctrl" & "F" key or āCommandā & āFā simultaneously to open your browser's search feature and search ā{CustomCSS}āĀ then Paste:Ā
iframe {display:none !important;}
The reason why I consider this an extreme method is because it blocks all iframeĀ node! So if you use a custom Disqus add on for commenting, itāll be blocked from displaying also.
Option 3 (best method)
Be moreĀ specificĀ with what you donāt want displaying
Follow Step 1-3 on Option 2 to get you to the HTML edit page and locate the tagĀ ā{CustomCSS}ā and right under it, paste:
/*To remove that tumblr edit helper box*/ .iframe-controls-container.desktop-iframe-controls-container { Ā Ā display: none !important; } Ā
/*To remove that tumblr follow me*/ .tmblr-iframe--controls.iframe-controls--desktop, .tmblr-iframe--mobile-loggedin-controls.iframe-controls--desktop { Ā display: none; }







