Topic summary
A user seeks help adding a hover zoom effect to multicolumn images in the Dawn theme.
Initial Solution:
- SetuBridge_1 provides CSS code to add a basic scale transform on hover by editing
base.css - The code applies
transform: scale(1.3)to.multicolumn-card .media:hover
Refinement:
- User requests the zoom effect to occur within the image boundaries (contained zoom)
- SetuBridge_1 provides updated CSS adding
overflow: hiddento the image wrapper and adjusting the transform toscale(1.5)on the inner image element - This solution successfully addresses the request
Additional Requests:
- User asks about customizing slideshow dimensions beyond Shopify’s default options for portrait-oriented product images
- Another participant (withinkandivy) inquires about creating a full-screen zoom with scroll functionality instead of the hover effect
Both follow-up questions remain unanswered.
2 Likes
1 Like
Hello @lslelegance
Please follow these steps:
- Step 1: Go to Online store > Themes > Actions > Edit code->asstes->base.css
.multicolumn-card .media:hover {
-ms-transform: scale(1.3);
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
Output : https://nimb.ws/R9NHUx
1 Like
@SetuBridge_1 it worked but I wish to have it the zoom inside the image itself like this effect here :
https://lslelegance.myshopify.com/collections
thanks !
1 Like
Hello @lslelegance
Greetings!!
Please follow these steps:
- Step 1: Go to Online store > Themes > Actions > Edit code->asstes->base.css
.multicolumn-card__image-wrapper .media{
overflow: hidden;
margin: 0 auto;
}
.multicolumn-card__image-wrapper .media img {
width: 100%;
transition: 0.5s all ease-in-out;
}
.multicolumn-card__image-wrapper .media:hover img {
transform: scale(1.5);
}
Output:
1 Like
thanks !
1 Like
I wish to have slideshow have my custom size not Shopify options only pls because I want to use it for products portrait size pls and smaller thanks
Hello - is there a way to do this but have the images zoom in to full screen with a scroll instead?

