Hello There,
Thanks for posting in! The one page navigation or scroll to section/anchor is not fully supported yet with Pro theme. To resolve your issue, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)
jQuery ( document ).ready( function($) {
setTimeout ( function() {
//$('a[href*="#"]').off();
$(document).on('click', 'z[href*="#"]', function(e) {
e.preventDefault();
console.log( $(this).attr('href') );
var hash = '#' + $(this).attr('href').split('#')[1];
if ( hash == '#' ) return false;
$('html, body').stop().animate({ scrollTop : $(hash).offset().top - $('.x-bar-fixed').height() });
} );
}, 500 );
} );
Hope this helps. Please let us know how it goes.