Reply To: How to move the primary navigation menu?

Homepage Community Forums Aspire Theme Support How to move the primary navigation menu? Reply To: How to move the primary navigation menu?

#23702
SavvyPro
Customer

    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-->