You're trying to make images inside a Webflow column layout ignore the column padding without manually setting widths or wrapping them in extra divs. Since rich text images are constrained by column padding and internal rules, here's how to solve it cleanly.
1. Use Negative Margins on the Image Itself
- Select the image inside the column.
- In the Style panel, apply negative margins equal to the column's horizontal padding.
- For example, if the column has padding-left/right: 72px, apply margin-left: -72px and margin-right: -72px to the image.
- This lets the image visually “break out” of the column padding without affecting other layout behaviors.
- Make sure the image is not set to 100% width, or else it could expand beyond the layout unintentionally.
2. Set the Image to Overflow Beyond Padding (Using Positioning)
- Select the image and set its position to
relative
. - Apply left and right offsets (negative px values) that match the column padding.
- For example, set left: -72px; right: -72px, assuming column padding is 72px.
- This visually shifts the image outside the padding area but retains it within the column's structure.
3. Optional: Use a Custom Class for Fine Control
- Apply a custom class to images that need to overflow.
- Use this class to apply the negative margins or offsets, so you can reuse it across different images without affecting layout globally.
- This lets you target only images needing this style, keeping order and reusability.
Summary
To make images inside columns in Webflow ignore column padding without using wrapper divs or fixed widths, apply negative left/right margins or relative positioning with offsets directly on the image. This keeps your layout flexible while allowing images to visually expand beyond the padding.