- Dirígete a Diseño
- Luego Edición HTML
- Busca <head> (presiona Ctrl + F para buscar más rápido)
- Después del código pegamos el código siguiente:
<style type='text/css'>
#navbar-iframe{
height: 0px;
visibility: hidden;
display: none;
}
</style>
Si quieres que solo sea INVISIBLE menos cuando pasas el cursor por encima sigue el paso siguiente
- Dirigete a Diseño
- Luego Edición HTML
- Busca <head> (presiona Ctrl + F para buscar más rápido)
- Debemos pegar antes el código siguiente:
<script src='http://www.google.com/jsapi'/><script>
google.load(&quot;prototype&quot;, &quot;1.6.0.2&quot;);
google.load(&quot;scriptaculous&quot;, &quot;1.8.1&quot;);
</script>
<script type="text/javascript">
function navbarShow() {
new Effect.Opacity('navbar-iframe', {duration:0.5, from:0.0, to:1.0});
}
function navbarHide() {
new Effect.Opacity('navbar-iframe', {duration:0.5, from:1.0, to:0.0});
}
function navbarHack() {
Event.observe('navbar-iframe', 'mouseover', navbarShow, false);
Event.observe('navbar-iframe', 'mouseout', navbarHide, false);
navbarHide();
}
Event.observe(window, 'load', navbarHack, false);
</script>
Fuente relacionado: Quierocrearunblog