.rich-text-class img:nth-of-type(n)
.You can resize an individual image inside a Rich Text Element in Webflow using the settings panel or custom CSS. Here’s how:
If you need more precise control, use custom CSS inside an Embed element:
<style> .your-image-class { width: 300px; } </style>
<style>
section:.rich-text-class img:nth-of-type(1) { width: 300px; }
nth-of-type(n)
to target a specific image in the Rich Text block.You can resize images directly by dragging the handles or apply custom CSS for more control. If needed, custom styles can be placed inside an Embed element or the Page Settings panel.