Remove Blogger-top-navbar

How to remove navbar of blogger? The top bar is by default in all blogger templates. You may not like that bar so why don't you remove that. Simple layout is always the key to seo. Don't tease search engines.
Here is the code that will remove blogger navbar.
Go to template designer, click on advance and then Add css to add the code.

#navbar{
visibility:hidden;
display:none;
}

To add a margin at the top of the header where navbar was place, then only add:

#navbar{
visibility:hidden;
}

Display:none;

will remove margin. Apply changes to template to save.

Comments