Making the blogger navbar a little cooler - 2
Following up on my previous post.
Blogger changed the navbar on top from a div to an iframe. To make it translucent now use this code.
Blogger changed the navbar on top from a div to an iframe. To make it translucent now use this code.
<style>It will not remove the bar completely. It will only be visible on a mouseover event. It works in Firefox, Opera 9 and Safari. On IE it will show a translucent navbar. Add this code in the head tag of your blogger template.
#navbar-iframe { opacity: 0; filter: alpha(opacity=50); }
#navbar-iframe:hover { opacity: .65; filter: alpha(opacity=75); }
</style >
Comments