MagedMoh94 Hi there, when does the javascript get initialized for those smooth scroll? You may check out the following knowledge base topic: https://community.buttonizer.pro/knowledgebase/37-execute-javascript-after-buttonizer-is-initialized
Then after Buttonizer has initialized you can use the hrefs and button clicks to move to the div.
jQuery(".buttonizer-button").each(function() {
jQuery(this).click(function() {
// Button click, search for #blog -> jQuery smooth scroll to the element
});
});
By the way, I just found out that there isn't a click action on the button at the moment, I was wondering if that's on purpose?