Persistent Header

jQuery(function($){

	// Persistent Header
	$(window).scroll(function(){
		var scroll = $(window).scrollTop(),
			fixedPosition = 300;

		// Different fixed position for mobile. Remove if unnecessary
		if( $('.site-container').width() < 768 )
			fixedPosition = 200;

		if( scroll > fixedPosition ) {
			$('body').addClass('fixed-header');
		} else {
			$('body').removeClass('fixed-header');
		}
	});
});

Bill Erickson

Bill Erickson is the co-founder and lead developer at CultivateWP, a WordPress agency focusing on high performance sites for web publishers.

About Me
Ready to upgrade your website?

I build custom WordPress websites that look great and are easy to manage.

Let's Talk