Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Fija el menú en la parte superior cuando naveguen por tu web

Si quieres conseguir que el menú se fije en la parte superior cuando tus usuarios hagan scroll en tu página, sigue los siguientes pasos:

Añade este código a tu functions.php

//* Enqueue Scripts
add_action( 'wp_enqueue_scripts', 'custom_load_scripts' );
function custom_load_scripts() {

	wp_enqueue_script( 'shrinking-header', get_bloginfo( 'stylesheet_directory' ) . '/js/shrinking-header.js', array( 'jquery' ), '1.0.0', true );

}

Crea un archivo llamado shrinking-header.js dentro de la carpeta js y añade este código.

jQuery(function( $ ){

	$(".site-header").after('
'); $(window).scroll(function () { if ($(document).scrollTop() > 10 ) { $('.site-header').addClass('shrink'); } else { $('.site-header').removeClass('shrink'); } }); });

y después añade este código css cambiando los colores, tamaños y paddings a tu gusto.

/* Shrink
--------------------------------------------- */

.shrink {top:0 !important;
transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

header.shrink {
  position:fixed;
  clear:both!important;
  width:100%;
  height:60px!important;
  max-height:60px!important;
  min-height:60px!important;
  z-index:999999999;
  border-top:3px solid #d65634;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

header.shrink .current-menu-item > a {border-top:none;}
header.shrink .fa-podcast, header.shrink .fa-wrench,header.shrink .fa-book,header.shrink .fa-shopping-cart,header.shrink .fa-question-circle {display:none;}

header.shrink .Roboto {display:none !important}

header.shrink .title-area img {max-width:100px!important;margin-top:-5px;}


This post first appeared on Taller De Wordpress, please read the originial post: here

Share the post

Fija el menú en la parte superior cuando naveguen por tu web

×

Subscribe to Taller De Wordpress

Get updates delivered right to your inbox!

Thank you for your subscription

×