From the video, it appears that the issue you're encountering is related to the scroll position and the behavior of the menu button in Webflow. The menu button requires two clicks to open after scrolling back up on a page with linked sections.
To fix this issue, you can utilize some custom code and interactions to ensure that the menu button functions as expected. Here's a step-by-step guide:
1. Select the menu button element on your page. This is usually a toggle button or an icon that triggers the menu to open and close.
2. In the Webflow Designer, go to the Interactions panel and create a new interaction for the menu button.
3. In the interaction settings, choose the trigger that activates the menu button. This could be a mouse click or tap event.
4. Now, add the following custom code to the interaction:
```javascript
var scrollPosition = $(window).scrollTop();
if (scrollPosition === 0) {
$('.menu-button').click();
}
```
In this code, we're first storing the current scroll position in the `scrollPosition` variable. Then, we're checking if the scroll position is equal to 0, indicating that the user has scrolled back up to the top of the page. If the condition is true, we programmatically trigger a click event on the menu button.
5. After adding the code, make sure to apply the interaction to the menu button element.
6. Finally, preview your site and test the behavior. The menu button should now open with a single click after scrolling back up on a page with linked sections.
Note: The code snippet assumes that your menu button has a class of `.menu-button`. Replace that selector with the appropriate class or ID if required.
By implementing this custom code and interaction, you can ensure that the menu button functions as expected, opening with a single click after scrolling back up on your page.