Hello,
Modify to:
background-attachment: scroll;
background-position: center top;
And go to
templates/jf_calla-exteriors/scripts/js/callaexteriors.js, in function jQuery(window).on("scroll", function(){...}) add like this:
jQuery(window).on("scroll", function(){
if (jQuery(window).width() > 765) {
if (jQuery(window).scrollTop() > 55){
jQuery('#jf-header').addClass('transparent');
} else {
jQuery('#jf-header').removeClass('transparent');
}
}
// new
var scrolledY = jQuery(window).scrollTop();
jQuery('#jf-slideshow').css('background-position', 'center ' + ((scrolledY)) + 'px');
});
Thank you for using our template!
joomfreak