Changing the breakpoint for the hamburger menu to appear at a different pixel width such as 1150px requires custom CSS, as Webflow default breakpoints do not allow direct modifications. Here’s how you can achieve this:
<style>
@media (max-width: 1150px) {
.w-nav-menu {
display: none;
}
.w-nav-button {
display: block;
}
}
@media (min-width: 992px) and (max-width: 1150px) {
.w-nav-button {
display: none;
}
.w-nav-menu {
display: flex;
}
}
</style>
.w-nav-menu for the menu and .w-nav-button for the hamburger icon.
To change the hamburger menu breakpoint to 1150px, add custom CSS to the Custom Code section in Webflow’s Project Settings. This custom CSS adjusts the display logic for your navigation menu and hamburger icon, ensuring they appear/disappear at the desired width. Always double-check class names and test thoroughly.