Hide Navigation Bar in Blogger

Learn How to hide and remove the Blogger navbar with simple CSS,


  1. Log in to your blogger account and select the Layout
  2. Click on Edit HTML
  3. Search for the text : body {
  4. now paste the below CSS code above the body {

/* CSS to hid navigation bar */
#navbar
{
height:0px;
visibility:hidden;
display:none;
}

5. Click "Save Template"

site visitor