Search This Blog

Wednesday, July 8, 2009

Hide Navigation Bar of the Blog

Add following code in the HTML code where other style code is written,
Use Edit HTML in custmization

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


1 comment:

  1. How to hide Navbar of the blog?
    Add these lines in HTML Code
    body
    {
    margin-top:0px;
    position: relative;
    top: -50px;
    }
    or just add in the body{} if already exists.

    ReplyDelete