Como hacer fijo el menú de Páginas y que baje y suba con el blog.



Antes de </head>.

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js' type='text/javascript'/>
<script>
//<![CDATA[
$(function() {
var $flotarMenu = $("#PageList1"),
$window = $(window),
offset = $flotarMenu.offset();
$window.scroll(function() {
if ($window.scrollTop() > offset.top) {
$flotarMenu.css({'position' : 'fixed', 'width' : '1100px', 'top' : '0px'});
} else {
$flotarMenu.css({'position' : 'relative', 'top' : 'auto'});
}
});
});
//]]>
</script>
<style>
#PageList1 {
width:1100px; /* Ancho del gadget de Páginas */
background:#062859; /* Color del fondo*/
z-index: 99;
}
</style>

No hay comentarios:

Publicar un comentario