Remove the top bar from blogspot

The blogspot top Navbar Bar has few functions like "Search Blog" ,"Flag Blog" ,"Next Blog"



Remove it Just adding this code at your css area:


method 1:

.Navbar {
visibility:hidden;
display: none;
}

method 2:

#navbar #Navbar1 iframe{
height:0px;
display:none;
visibility:hidden;
}



Done.