You're looking to trigger the tablet layout in Webflow at a screen width larger than 991px, such as 1150px, and improve how your design adapts during scaling. Webflow doesn't allow direct resizing of default breakpoints, but there are workarounds using custom breakpoints and design strategies.
section:@media (max-width: 1150px) and (min-width: 992px) { /* custom styles */ }
Important: You must know CSS and manually write the styles using Webflow’s class names. These styles won't reflect visually inside the Webflow Designer.
Webflow's breakpoints are fixed, but to adjust layout behavior from 1150px and downward, you can either use custom CSS media queries or optimize your desktop layout to begin shifting around 1150px. While you can’t move the tablet breakpoint itself, these techniques let you effectively control the transition to a tablet-like layout earlier.