2005/10/07

CSS Hacking, because I can.



So a few weeks ago I put my coding powers to work removing the blogger dashboard/toolbar. It was just to dominating. If you're willing to take the risk bitting the had that feeds you free blogging, just past the following into your template right before the </body> tag.

<script>
   var m1 = document.getElementById("b-navbar");
   m1.style.display="none";
   m1.style.visibility='hidden';
   m1 = document.getElementById("space-for-ie");
   m1.style.display="none";
   m1.style.visibility='hidden';
   m1 = document.getElementById("header");
   m1.style.margin="15px auto 0px";
</script>

No comments: