How To Remove Blogger’s Top Navigation Bar

The navigation bar is that bar that appears on top of your blogger’s blog with features like search, next blog, flag blog and the rest of them. It’s got cool features though but many believe it gives their blog some kind of ugly look. We bet you don’t like too, else you won’t be reading this post.
Removing this thing involves just a couple of steps and it’s gone:
1. Sign in to your blog and click on layout
2. Now click on edit html

3. Now paste this code as shown in the image below
#navbar {
height: 0px;
visibility: hidden;
display: none;
}

Now go check your blog and you’ll find out the navbar is gone. It’s actually hidden, not completely deleted. To show it again, simply delete the code you pasted earlier.

Comments