New Shopify Certification now available: Liquid Storefronts for Theme Developers

How can I get Hover effect on multicolumn images - Dawn

Solved
VicexGrips
Excursionist
91 0 8

how can I make the images zoom or shrink when hovering over multicolumn images

 

shop - circle6.co

Accepted Solutions (2)
laddisahsi
Shopify Partner
332 34 36

This is an accepted solution.

Hi @VicexGrips 

You can follow the following steps:

1. Please go to the Online Store.
2. Then Edit Code.
3. Please find the theme.liquid file.
4. Please add code before closing the tag </head> tag.

<style>
.multicolumn-card__image-wrapper .media { transition: transform .5s; }
.multicolumn-card__image-wrapper .media:hover { transform: scale(1.1); }
</style>


If this solution is worked, then please Like this and Mark this as accepted solution!


Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!

View solution in original post

Dan-From-Ryviu
Shopify Partner
5626 1036 1064

This is an accepted solution.

You can do that by update code like this 

.multicolumn-list__item.center .media--adapt img { 
left: 0 !important; 
transform: unset !important;
transition: transform .5s;
}
.multicolumn-card .multicolumn-list__item.center .media--adapt:hover img {
transform: scale(1.5) !important;
}

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 5 (5)
Dan-From-Ryviu
Shopify Partner
5626 1036 1064

Hi @VicexGrips 

Please add this code to Custom CSS of the multiple columns section 

.multicolumn-card__image-wrapper .media { transition: transform .5s; }
.multicolumn-card__image-wrapper .media:hover { transform: scale(1.1); }

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

laddisahsi
Shopify Partner
332 34 36

This is an accepted solution.

Hi @VicexGrips 

You can follow the following steps:

1. Please go to the Online Store.
2. Then Edit Code.
3. Please find the theme.liquid file.
4. Please add code before closing the tag </head> tag.

<style>
.multicolumn-card__image-wrapper .media { transition: transform .5s; }
.multicolumn-card__image-wrapper .media:hover { transform: scale(1.1); }
</style>


If this solution is worked, then please Like this and Mark this as accepted solution!


Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!
VicexGrips
Excursionist
91 0 8

it works! but it makes it bigger rather than shrink

or maybe we can do a smoother animation like this? https://dev4sb-test.nimbusweb.me/share/6816404/egeiouc12avwz68hb4i6 

 

VicexGrips
Excursionist
91 0 8

actually It looks good just the image overlaps sometimes how can we fix that?

Dan-From-Ryviu
Shopify Partner
5626 1036 1064

This is an accepted solution.

You can do that by update code like this 

.multicolumn-list__item.center .media--adapt img { 
left: 0 !important; 
transform: unset !important;
transition: transform .5s;
}
.multicolumn-card .multicolumn-list__item.center .media--adapt:hover img {
transform: scale(1.5) !important;
}

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now