Hello There,
Thank you for getting back to us. I can confirm that this is a bug with the scroll to section when custom header is active. To resolve this, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb) or in the customizer, Appearance > Customize > Custom > Edit GLOBAL Javascript
// Setup
// =============================================================================
jQuery(function($) {
var $body = $('body');
var adminbarHeight = $('#wpadminbar').outerHeight();
if ( $body.hasClass('.x-navbar-fixed-top-active') ) {
var navbarFixedTopHeight = $('.x-navbar-fixed-top-active .x-navbar').outerHeight();
} else {
var navbarFixedTopHeight = $('.x-masthead').outerHeight();
}
var locHash = null;
var dragging = false;
var locHashIndex = location.href.indexOf('#');
if ( -1 !== locHashIndex ) {
locHash = location.href.substr(locHashIndex).split('/')[0];
}
$body.on('touchmove', function() {
dragging = true;
} );
$body.on('touchstart', function() {
dragging = false;
} );
//
// Calculate the offset height for various elements and remove it from
// the element's top offset so that fixed elements don't cover it up.
//
function animateOffset( element, ms, easing ) {
if ( ! element ) {
return;
}
try {
var $el = $(element);
} catch(error) {
// abort on invalid selectors. see #610
return;
}
if ( ! $el || 0 == $el.length ) {
return;
}
$('html, body').animate({
scrollTop: $el.offset().top - adminbarHeight - navbarFixedTopHeight + 1
}, ms, easing);
}
//
// Page load offset (if necessary).
//
$(window).load(function() {
animateOffset(locHash, 1, 'linear');
});
//
// Scroll trigger.
//
$('a[href*="#"]').on('touchend click', function(e) {
href = $(this).attr('href');
notComments = href.indexOf('#comments') === -1;
if ( href !== '#' && notComments ) {
var theId = href.split('#').pop();
var $el = $('#' + theId);
if ( $el.length > 0 ) {
e.preventDefault();
if (dragging) {
return;
}
animateOffset($el, 850, 'easeInOutExpo');
}
}
});
});
Hope this helps. Please let us know how it goes.