To prevent an image inside a column from shrinking when the browser width drops below 1440 px in Webflow, you need to control the image's sizing behavior and ensure the container doesn’t force it to scale down.
1. Set the Image to Fixed Dimensions
- Select the image within the column.
- In the Style panel, set a fixed width (e.g., 400px) and/or height if needed.
- Make sure the Width setting is not set to 100%, as that will allow it to shrink with the parent.
2. Set the Image’s Sizing to “Do Not Shrink”
- With the image selected, check the Flex Child settings (if inside a Flex container).
- Set "Shrink if needed" to No, so the image won’t scale down with its parent.
3. Override Column Flex Behavior (if applicable)
- Columns in Webflow may use flexbox under the hood.
- If needed, convert the column layout to a custom flexbox or grid, where you have more control over the behavior.
4. Use Min Width on the Image or Container
- With the image or its parent element selected, set a min-width (e.g., 400px).
- This ensures the image will not shrink below that width, even when the browser window becomes narrower.
5. Check Media Queries / Breakpoints
- Go to the 1440px breakpoint and smaller (e.g., 1280, 992).
- Make sure no other styles override the image sizing at these viewports.
- Remove any max-width or percentage widths that cause shrinkage.
6. Disable Auto-Responsive Settings
- Ensure the image doesn’t have an automatic “responsive image” behavior turned on if you're using it inside a dynamic context.
- If using dynamic content (CMS), double-check Image Settings to see if custom widths are applied by Webflow.
Summary
To keep your image from shrinking below 1440 px, set its fixed width, apply "Do not shrink" in Flex settings, use a min-width, and confirm breakpoints don’t override your settings. Convert layout to custom Flex/Grid for more control if necessary.