Hello,
Thank You so much for the Kind Words! :)
You can consider refreshing the Parallax on Toggle Open/Close. Find the following code in the js/functions.js File inside the toggles: function() Function Block:
element.children('.togglet').off( 'click' ).on( 'click', function(){
$(this).toggleClass('toggleta').next('.togglec').slideToggle(300);
return true;
});
and replace it with:
element.children('.togglet').off( 'click' ).on( 'click', function(){
$(this).toggleClass('toggleta').next('.togglec').slideToggle(300, function(){
skrollr.refresh();
});
return true;
});
This should work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.