18 lines
421 B
JavaScript
18 lines
421 B
JavaScript
jQuery(document).ready(function($) {
|
|
|
|
|
|
var mastheadheight = $('.ds-header').outerHeight();
|
|
//console.log(mastheadheight);
|
|
$(".ds-banner,.ds-main-section").css("margin-top" , mastheadheight);
|
|
|
|
$(window).scroll(function(){
|
|
if ($(window).scrollTop() >= 10) {
|
|
$('.ds-header').addClass('ds-fixed-header');
|
|
}
|
|
else {
|
|
$('.ds-header').removeClass('ds-fixed-header');
|
|
}
|
|
}).scroll();
|
|
|
|
|
|
}); |