Hi Armin,
I am using the fullscreen slider and navigate through with the scroll to script, which works well.
<script>
jQuery(document).on('click', '.scrollto', function(e){
e.preventDefault();
e.stopPropagation();
var sectionToScrollTo = jQuery(this).attr('data-scrollto');
jQuery.fn.fullpage.moveTo(sectionToScrollTo);
});
</script>
But I am struggling, with the implementation to the menu.
Is it some how possible to jump from one page through the menu to a specific page on the fullscreen slider?
best
Felix