< All Topics
Print

Elementor Scroll Offset Menu Anchors

Add this code in our Child-theme functions.php file
				
					add_action( 'wp_footer', function() {
if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
return;
}
?>
<script>
window.addEventListener('elementor/frontend/init', function() {
elementorFrontend.hooks.addFilter( 'frontend/handlers/menu_anchor/scroll_top_distance', function( scrollTop ) {
return scrollTop - 90;
} );
} );
</script>
<?php
} );
				
			
and then change the value 90 to get a perfect top distans.
Tags: