How can i remove zoom when touching social media icons?

Solved

How can i remove zoom when touching social media icons?

Not applicable

Hi, when I hover my mouse over the social media icons the icons are zoomed in. How do I remove the zoom?

 

zoom.png

 

Dawn theme 15.0.0

url: https://cb180d-31.myshopify.com/

 

Thank you

Accepted Solution (1)

PageFly-Richard
Shopify Partner
4668 1069 1726

This is an accepted solution.

Hi @Anonymous 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
.list-social__link:hover .icon {
    transform: none !important;
}
</style>

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly 

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
8403 2011 2466

Hi @Anonymous 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.list-social__link:hover .icon {
  transform: unset;
}

 

And save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Not applicable

Thanks. I have now added the code to the base.css at the end but it doesn't work.

 

 

Best regards

Made4uo-Ribe
Shopify Partner
8403 2011 2466

In your other post, you also ask for zoom and under. I give you the instruction to add in the theme.liquid. 

Can you add the code above before the </style>. 

Like this. 

 

<style>
.card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: unset;
  }

.underline-links-hover:hover a {
     text-decoration: none;
    }

.list-social__link:hover .icon {
  transform: unset;
}
</style>

 

 

Or replace it with this one and save. Anytime someone gives you some code with <style></style>, make sure to paste it inside this tag <style></style> in the theme.liquid file. This way, the store won’t be overloaded by unnecessary code, and you’ll minimize the size of your theme.liquid file.

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

PageFly-Richard
Shopify Partner
4668 1069 1726

This is an accepted solution.

Hi @Anonymous 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
.list-social__link:hover .icon {
    transform: none !important;
}
</style>

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly 

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

Not applicable

Its working. Thank you 🙂