The Blogger or Blogspot Navbar is a default feature that appears at the top of every Blogger powered blog. It is a useful navigation tool which allows readers to search the blog for targeted content, mark the blog as objectionable, and randomly view other member blogs.
The Navbar can be disabled for users who publish contents via FTP, but it will appear on all freely hosted BlogSpot blogs.
You see a navigation bar on the top of every blog hosted at Blogger. With this navigation bar, you can search blogs, visit the next blog, sign in or create a new account. You can even flag a blog for posting some objectionable content.
One thing I like about WordPress.com blogs is that they don’t display [...]
The NavBar is visible by default in your blogger pages . If you find it annoying , then all you have to do is to add some code in your blogger template code and the step to be followed is :
Login to your Blogger Account .Goto LAYOUT option in Dashboard .Now Goto EDIT HTML .Copy the below code :
#navbar {
height:0px;
visibility:hidden;
display:none;
}Paste the code anywhere between the code below
1. Login to blogger. 2. On the dashboard, select layout and click edit HTML. 3. Scroll down the template HTML till you see a section similar to the picture shown at the left. 4. Copy and paste the code below as shown in the picture. #navbar-iframe { height:0px; visibility:hidden; display:none }
There are 2 ways to hide or Remove the navbar in BloggerFull HideLogin to your Blogger account.Go to Template > Edit HTML.Copy and paste this code to your CSS code (between tags).#navbar-iframe {height: 0px;visibility: hidden;display: none;}Auto HideLogin to your Blogger account.Go to Template > Edit HTML.Copy and paste this code to your CSS code (between tags).#navbar-iframe{opacity:0.0;filter:alpha(Opacity=0)}#navbar-iframe:hover{opacity:1.0;filter:alpha(Opacity=100, FinishedOpacity=100)}
Beberapa hari yang lalu sempat muncul pertanyaan "blogger hidden navbar skrg legal??". Pertanyaan dari dani mungkin juga sempat terlintas di benak Anda atau teman, mengingat trik untuk melenyapkan navbar juga banyak dipublikasikan blogger lain. Baik di Blogger lama maupun baru.
Bila ada diantara pembaca edittag ada yang belum mengetahui istilah navbar, ini adalah baris navigasi dengan tinggi 40
The Blogger or Blogspot Navbar is a default feature that appears at the top of every Blogger powered blog. It is a useful navigation tool which allows readers to search the blog for targeted content, mark the blog as objectionable, and randomly view other member blogs.The Navbar can be disabled for users who publish contents via FTP, but it will appear on all freely hosted BlogSpot blogs. While the feature is undeniably useful, some people find that its position at the top of the page looks obtrusive even with a choice of 4 colors. Some therefore pick a template with a black background to blend well with a black navigation bar. There are also parents and educators who find the 'view random blogs' feature inappropriate, as their children may inadvertently view objectionable blogs.Nevertheless, this article is not a discussion on the merits or demerits of a Navbar. That is for you to decide. Here, I am assuming that you have made a conscious decision to hide or remove the Navbar.