I've got a fixed nav (for desktop) for this upcoming site (http://rvwinvesting.com/2016/) but right now on desktop, the links in the navbar and forcing the div's to scroll to the very top of the page. So a portion of it appears cut off.
I'd like it to scroll directly underneath the nav so you can see the start of the content of the div. Not sure how to implement that because if I just let's say top+100, it would then scroll to the top of the screen +100 pixels on all screens and I just need it for desktop/laptop. Here's what I'm currently using to make the effect work:
jQuery(document).ready(function() {
jQuery('.nav-menu a[href^="#"]' ).click(function(){
jQuery.scrollTo( this.hash, 1000, { easing:'swing' });
return false;
});
});