From following image it will be cleared what we meant by blogger navigation bar or navbar.
Many ones want to remove that bar. There are many reasons behind it. May be they want to get rid of Report abuse / Flag blog feature. Whatever the reasons there is, in this post step by step I will show how we can remove or disable the navigation bar from your blog.
Step 01: Login to your blogger account from blogger.com and then click Layout on the blog that you want to disable the navigation bar.
If you already login to that blog you can simply click customize from the navigation bar.
Step 02: Under Layout menu there is Edit HTML. Click on it. You will get Edit Template box. It will look like,
Step 03: Add navbar css ID and make its height 0, visibility hidden, display none. That is adding following css codes inside your Edit HTML.
#navbar {After adding it will look like following,
height: 0px;
visibility: hidden;
display: none;
}
body {Alternatively you can add simply following code.
margin:0px;
padding:0px;
background:$bgcolor;
color:$textcolor;
font-size: small;
}
#navbar {
height: 0px;
visibility: hidden;
display: none;
}
#outer-wrapper {
font:$bodyfont;
}
#navbar-iframe {which will look like,
display: none ! important ;
}
body {Either of the above code will work.
margin:0px;
padding:0px;
background:$bgcolor;
color:$textcolor;
font-size: small;
}
#navbar-iframe {
display: none ! important ;
}
#outer-wrapper {
font:$bodyfont;
}
Step 04: Save the template and view the blog.
You are done.
Tips: Now from the blog you no longer will be able to see navigation bar and thus you will not find New post, Customize, Sign Out link. In order to see those you have to login to blogger.com and you need to maintain from there.
Related Documents
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html
No comments:
Post a Comment