- Where to find it
- Labelled Image Intrinsic Width in the "Selected Component" section of the Modify drawer.
- Offered by
- The Image component. Other components do not have this setting.
- Per device
- Yes — you can set one value for every screen, or separate values for phone, tablet, and desktop.
In plain English
You have almost certainly experienced the problem this setting solves. You start reading an article, an image finishes loading further up, and the whole page jumps down mid-sentence. It is one of the most irritating things a web page can do, and Google measures it as a ranking signal.
It happens because the browser did not know how much room the image needed until it arrived. Telling it the image's real dimensions in advance — its intrinsic width and height — lets it work out the shape and hold exactly the right space open from the start. The picture then fades in without moving anything.
This number is the image's actual pixel width as it was created, not the size you want it displayed at. A 1600 by 900 photograph has an intrinsic width of 1600, even in a 400px column. Set the display size with the column's Width or Max Width.
Always set this together with Image Intrinsic Height. On its own, neither is enough for the browser to work out the shape.
When you would use it
- Every image, without exception. This is the single most effective thing you can do for how stable your page feels.
How to change it
- Click the image component on the canvas.
- In the Modify drawer, open "Selected Component", then "Image Intrinsic Width".
- Enter the image's real pixel width. Selecting an image from the media library often fills this in for you.
- Set Image Intrinsic Height to match.
Watch out for
- Set both width and height or neither. One alone does nothing useful.
- These are the image's true dimensions, not the size on screen. Getting the ratio wrong makes the reserved space the wrong shape and the jump comes back.
- If you crop or resize the image through Cloudinary Transformations, these numbers should describe the result of that transformation.
Related settings
For developers
The technical reference for what this setting produces: MDN: the width attribute. You do not need any of it to use the setting — it is there for whoever is building the components or debugging the published page.
Where to go next
- Back to the Image component — everything else it can do.
- The Composer — the editing surface these settings live in.
- Publishing — how a change like this reaches your live site.