At the top of your blog you can see a bar , many bloggers don’t like the presence of this navbar and want to hide it.
Disappear the Blogger Navbar
- Log in into blogger with your ID
- Click Layout
- Click EDIT HTML tab
- Click Download Full template. Back up your template first (important!)
- Find the code which is similar to the code below, focus at the body code:
body {
background: #8F8E8E;
width: 100%;
color: #000000;
font-size: 12px;
font-family: Arial, Tahoma, Verdana;
margin: 0px auto 0px;
padding: 0px;
} - Put the following code above the body {….} :
#navbar-iframe {
display : none;
height : 0;
visibility : hidden;
} - Click SAVE TEMPLATE
- Finished and now your blog navbar is hidden.