To hide the top bar of the blog (Navbar) is necessary to go to Design> Edit Html and find a place to paste this code:
# navbar-iframe {
height: 0px ;
visibility: hidden;
display: none}
If instead what you want is hide the bar but that appears when you hover your mouse over where you should see the code you have to add is:
# navbar-iframe {
opacity: 0.0;
filter: alpha (Opacity = 0)
} # navbar-iframe: hover {
opacity: 1.0;
filter: alpha (Opacity = 100, FinishedOpacity = 100)}
works fine in Firefox, Opera, Safari and Internet Explorer, 7.
NOTE:
portion of the template you need to add any of the two codes is the part devoted to CSS, which is found between the following lines:
\u0026lt;b:skin> \u0026lt;! [CDATA [
HERE TO GO ALL THE CSS CODE
]]>\u0026lt;/ b: skin>
Source: Blog and Web
0 comments:
Post a Comment