A fixed navbar that stays at the top while users scroll is a common design pattern that improves navigation. Here’s how to set it up:
Select your navbar element and in the Layout section of the Styles panel, set the Position to Fixed
Choose the Top preset position
Select the body element and add top padding to prevent the navbar from overlapping content
Add a high z-index value (e.g., 2147483647) to ensure the navbar stays above other elements
For best results, make sure your navbar is a direct child of the body element and verify that no parent elements have overflow set to hidden, scroll, or auto, as these settings can interfere with fixed positioning.
Hopefully this helps! If you still need assistance, please reply here so somebody from the community can help.