在CSS中,body後加入下列程式碼
隱藏NavBar (Hide the NavBar)
/* === Hide the NavBar === */
.Navbar {
visibility:hidden;
display: none;
}
/* === Hide the NavBar === */
將NavBar置底 (Place the NavBar at the bottom of the page)
/* === Place the NavBar at bottom ===*/
body { position: relative; }
.Navbar{
position: absolute;
top: inherit;
bottom: -32px;
left: 0px;
margin-bottom: 0;
}
/* === Place the NavBar at bottom ===*/
Reference Link:
Remove the NavBar
http://blogger-templates.blogspot.com/2005/01/remove-navbar.html
--
隱藏NavBar (Hide the NavBar)
/* === Hide the NavBar === */
.Navbar {
visibility:hidden;
display: none;
}
/* === Hide the NavBar === */
將NavBar置底 (Place the NavBar at the bottom of the page)
/* === Place the NavBar at bottom ===*/
body { position: relative; }
.Navbar{
position: absolute;
top: inherit;
bottom: -32px;
left: 0px;
margin-bottom: 0;
}
/* === Place the NavBar at bottom ===*/
Reference Link:
Remove the NavBar
http://blogger-templates.blogspot.com/2005/01/remove-navbar.html
--
All Comments