Skip to content

Instantly share code, notes, and snippets.

@lsauer
Last active December 27, 2015 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lsauer/7357689 to your computer and use it in GitHub Desktop.
Save lsauer/7357689 to your computer and use it in GitHub Desktop.
Blogger-plugin: social-share buttons on top and modern CSS Label styles
/*lsauer.com, 2013 - add this somewhere in your Blogger template*/
var bloggerplugins = bloggerplugins || {};
bloggerplugins.labelsontop = (function($){
return function(){
$(".article-footer").hide();
$(".article-footer .publish-info").hide();
$(".article-footer").prependTo( $("div.article") );
$(".article-footer").fadeIn(600);
}
})(jQuery);
setTimeout(bloggerplugins.labelsontop, 2500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment