how do i create a 2 horizontal menu but different item
You can create a custom menu of your own using Selection Tags or a Repeater and assign the relevant options.
then how can i set it to like when the y click the certain option it would lead to another anchor on the same page
@jericobadeo Let’s say you go for the Selection Tags.
And you set each option value to be the anchor property ID .
Then:
$w.onReady(() => {
$w("#selectionTags").onChange(() => {
const value = $w("#selectionTags").value.reverse()[0];
$w("#selectionTags").value = value;
$w("#" + value).scrollTo();
})
})