Remove blogger navbar
Well, didnt take long to google it, but might be useful someday. If you want to remove the top navigation bar in blogger (Next blog,...).
Here is the initial tip which didnt work for me. And the final response (comment) there worked for me. Had to place this
#navbar {
height: 0px;
visibility: hidden;
display: none;
}
just bellow the body css selector.
UPDATE: You can also just go to the "Template designer" and at "Advanced" => "Add CSS" add this css:
#navbar{display:none}
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.