Hi there,
Please add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript
jQuery(document).ready(function($){
$('.home .menu-button-kob').hide();
var image_height = $(".home #x-section-1").outerHeight();
$(window).scroll(function(){
if ($(this).scrollTop() > image_height) {
$('.menu-button-kob').fadeIn();
} else {
$('.menu-button-kob').fadeOut();
}
});
});
Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!