Skip to content Skip to sidebar Skip to footer

Tumblr White Bar Appears On Top Of My Mobile Theme After Disabling Follow Button Through Code

So, as of 4/12/15, Tumblr has changed something in their code and the 'Promote Tumblr!' buttons reappeared on my blog, even if I had them disabled in the advanced settings... I sea

Solution 1:

That is because Tumblr seem to add this class "tmblr-iframe--controls-phone-container" to the body and this style;

.tmblr-iframe--controls-phone-container {
    padding-top: 43px;
}

from what I found. Try: body { padding-top: 0 !important; }

You can use the "Developer Tools" in Chrome (desktop browser) to see the source HTML of your site on different mobile devices, that should help you with problems like this.

Note: I used the "Developer Tools" in Chrome Browser and was emulating a device called "iPhone 5" to recreate the issue in question.


Post a Comment for "Tumblr White Bar Appears On Top Of My Mobile Theme After Disabling Follow Button Through Code"