If you're facing the issue where the fullscreen menu is still allowing scrolling even though it's set to a fixed position on your Webflow site, there are a few steps you can take to resolve this problem:
1. Check the positioning settings: Make sure that the fullscreen menu element has the correct positioning settings. Select the element and navigate to the Style panel. Under the Position section, ensure that the position is set to "Fixed" and that the appropriate top, right, bottom, and left values are set. Additionally, verify that the "Width" and "Height" settings are also adjusted correctly.
2. Review the overflow settings: Scroll behavior can sometimes be affected by incorrect overflow settings. Double-check that the parent element or body has its overflow property set to "hidden." This will prevent scrolling while the fullscreen menu is active. You can access these settings in the Style panel under the Overflow section.
3. Consider using custom code: If the above steps don't resolve the issue, you may need to implement a custom code solution. To do this, you can add custom CSS or JavaScript to your Webflow project. First, identify the class or ID of the element causing the scrolling issue (e.g., the body or a container). Then, add custom code within the project settings or on a specific page to disable scrolling when the fullscreen menu is open.
Here's an example of how you can achieve this using custom CSS:
```css
/* Create a class for your fullscreen menu */
.fullscreen-menu {
/* Add any specific styles for your menu */
}
/* Disable scrolling when fullscreen menu is active */
body.menu-open {
overflow: hidden;
}
```
Remember to replace ".fullscreen-menu" with the appropriate class or ID name for your menu element. Additionally, ensure that the JavaScript code responsible for toggling the "menu-open" class on the body is functioning correctly.
By following these steps, you should be able to fix the issue with the fullscreen menu allowing scrolling even though it's set to a fixed position on your Webflow site.