To resize an individual image inside a Rich Text Element in Webflow, you need to use a combination of custom classes and embedded code, since the Rich Text Element has limited direct styling options.
small-image
) in the "Custom attributes" or "Class" field, if available.tag section, add inline styles targeting the image.
Example:
<style> .rich-text-block img[src*="your-image-name.jpg"] { max-width: 200px; height: auto; }</style>
"your-image-name.jpg"
with an identifying part of the image filename or a unique class if set..rich-text-block img:nth-of-type(3)
to style a specific image positionally.To resize an individual image inside a Rich Text Element in Webflow, you need to apply a specific CSS rule—either by targeting a unique class added via the Editor or using image attributes like src
. Use custom CSS in Project/Page Settings to apply the resizing style.