Felt important to share this tiny snippet of CSS for folks still struggling with smooth-scroll…
I could not get smooth scroll to work with the default theme settings, or specifying the special class, on buttons. I didn’t want to edit php files because it seemed like overkill, nor I wasn’t looking for class filtering. I just wanted SMOOTH SCROLLING on tap for any anchor link, button, or div on the website.
In your “Additional CSS” simply add the snippet below. View source on Chrome dev tools and inspect the white hero button at https://webassistant.me/.
html {
scroll-behavior: smooth;
}