Div Block
as a container.width: 100%
.position
to absolute
, and adjust placement.width
, height
, and z-index
.You can overlay one image on top of another in Webflow using absolute positioning or flexbox. Follow these steps to achieve it.
Div Block
onto the canvas.position
to relative
in the Style panel (this ensures that positioned child elements adjust accordingly).width
and height
to define the container size if necessary.Image
element inside the div.width: 100%
and height: auto
to make it responsive.Image
element into the same div.position
to absolute
so it moves freely inside the div.Width
and Height
settings to resize the overlay image.Z-index
to control layer order (a higher value keeps it above the background image).Wrap both images inside a relative Div Block
, place the overlay image with absolute positioning, and adjust size, position, and z-index
as needed.