Site Link: https://devsite3.savvyprosolutionsllc.com
I am not having any issues with the parallax effect at this time, but I am having issues with the site header getting bumped up and getting slightly cut off by the navigation menu’s border. I added the following jQuery code to try and correct it, but the problem persist:
// Adjust header when scrolled
jQuery(document).ready(function($){
$(".site-header").after('<div class="bumper"></div>');
$(window).scroll(function () {
if ($(document).scrollTop() > 1 ) {
$('.site-header').addClass('shrink');
} else {
$('.site-header').removeClass('shrink');
}
});
});<!--formatted--><!--formatted-->