To reverse the order of an image and text on mobile view in Webflow (text above image), while keeping their default order on desktop, you need to adjust the Flexbox direction for mobile breakpoints.
1. Use a Flex Container for Layout
- Wrap the image and text in a Div Block.
- Select the wrapping Div Block, then in the Style panel, set Display: Flex.
- Set Flex Direction: Row for desktop to keep the default side-by-side order.
2. Change Flex Direction on Mobile
- Switch to the portrait (mobile) breakpoint in the Webflow Designer.
- Select the same Flex container.
- Change Flex Direction to Column Reverse—this places the last child (the image) below the first child (the text).
3. Confirm Element Order
- Make sure the text element is listed above the image within the container in the Navigator. Since Column Reverse flips the visual order, this ensures text appears above the image on mobile.
4. Adjust Spacing
- After changing the layout direction, inspect and adjust margins/paddings to maintain good visual spacing on all breakpoints.
Summary
Use Flex Direction: Column Reverse on smaller breakpoints to flip the vertical order of text and image while keeping the side-by-side layout on desktop. This method is fully responsive and preserves semantic structure.