I have built my site using a purchased webflow template. The break point resolutions are not appropriate for my design. How do I change these values. I have looked everywhere in the css that was exported from webflow. This is really kicking my butt and need to fix this.
Webflow does not provide for custom breakpoints. They are also defined in the base CSS and rules added to the individual media queries as you add styles in the designer (desktop, tablet, mobile landscape, mobile portrait. These are the base defined MQ’s. Additional ones are added when you go > desktop in the designer.
/* Webflow default breakpoints */
@media screen and (max-width: 991px) {
/* Your responsive CSS */
}
@media screen and (max-width: 767px) {
/* Your responsive CSS */
}
@media screen and (max-width: 479px) {
/* Your responsive CSS */
}
You are free to add custom CSS if your plan allows it but you won’t be able to override these.