blogger logo

Heres a little tip on how to remove the blogger search bar from your Blogger.com Blog.

Follow the instructions below.

To hide the Blogger NavBar paste the CSS definition between the style tags:

<style type="text/css">

#b-navbar {
height: 0px;
visibility: hidden;
display: none;
}

</style>

Hiding the banner in Blogger Beta (iframe):

<style type="text/css">

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

</style>

Just remove the code to show it again.

Here some code that allows you to put the Nav Bar at the bottom of the blog page.


<style type="text/css">
body { position: relative; }
#b-navbar {
position: absolute;
top: inherit;
bottom: 0px;
margin-bottom: 0;
}
</style>

Leave a Reply

You must be logged in to post a comment.