How to move navbar on blogger

Tired of that navbar showing on the top of your blog? This code will allow you to move your blogger navbar to the bottom of the screen (scroll down to view the result). I know this works for Blogger Beta, not sure about the old Blogger. If someone knows the code for the old blogger, feel free to share!

Copy and paste this code after the <body> tag in your template:

<style type='text/css'>
body {
position: relative;
}
#navbar-iframe {
position: absolute;
top: inherit;
bottom: 0px;
margin-bottom: 0;
}
</style>

0 comments: