Wordpress Smooth Scroll To Anchor

[Solved] Wordpress Smooth Scroll To Anchor | Perl - Code Explorer | yomemimo.com
Question : wordpress smooth scroll to anchor

Answered by : gtamborero

/* Just use Native HTML Smooth Scroll */
html { scroll-behavior: smooth; scroll-padding-top: 80px; /* If you need scroll offset try this magic! */
}

Source : | Last Update : Fri, 03 Dec 21

Question : smooth scroll wordpress

Answered by : you

function enable_smooth_scroll() { wp_enqueue_script( 'smooth-scroll', get_template_directory_uri() . '/js/smooth-scroll.min.js', array( 'jquery' ), '1.2.1', true );
}
add_action( 'wp_enqueue_scripts', 'enable_smooth_scroll' );

Source : | Last Update : Tue, 19 Sep 23

Answers related to wordpress smooth scroll to anchor

Code Explorer Popular Question For Perl