Every blogspot blog initially has an ugly navbar at the top that I never wanted there in the first place. So of course I needed some way to kill it. Using this method, you will not remove th navbar from the pages of history entirely, as it will still haunt
your HTML template for the rest of your life, but you can make it disappear forever which is good enough.

What is this I don't even know.
This again makes the blog more personal and less like a
generic blogspot blog. Also it makes it harder to report abuse, so sweet bonus there. By just adding a little bit of CSS the navbar will be gone. Go to the Edit HTML under the design tab in the blog editor.

At the location specified by the arrow above, add the following CSS definition.
#navbar-ifram {
display: none !imprtant;
}
Save the changes and bye bye navbar. If for some reason you want to display it again later just remove the code.