How to Hide, Disable or Remove Blogger Blogspot NavBar?

Note that, according to terms and conditions of blogger.com, you do not remove the navbar or when you host your blog under your own server. This tutorial is for those who blog outside of blogger.com determines their host, but the code is not for blog hosted by blogger.com.

This blog post tells how to hide/disable/remove/delete the blogger Navbar (also known as the navigation bar) from your blog.

Step 01:
Go to Design -> Edit HTML tab of your blogger (as shown)

Step 02:
Copy the code below
and insert it into the template’s HTML, with the body style class (as shown above). 

#navbar {
  height: 0px;
  visibility: hidden;
  display: none;
}

You may also like...