How can i remove zoom when touching social media icons?

Topic summary

A user encountered an unwanted zoom effect when hovering over social media icons in their Shopify store footer (Dawn theme version 15.0.0).

Solution provided:

  • Add CSS code to remove the transform property on hover: .list-social__link:hover .icon { transform: unset; }

Implementation methods suggested:

  1. Insert the code at the bottom of the main CSS file (base.css/style.css/theme.css) in the Assets folder
  2. Alternatively, wrap the code in <style></style> tags and place it in theme.liquid file above the </head> tag

Outcome:
The user confirmed the solution worked after implementing the code. Contributors emphasized placing CSS within <style> tags in theme.liquid helps minimize file size and prevents unnecessary code bloat in the store.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

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

Dawn theme 15.0.0

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

Thank you

1 Like

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!

1 Like

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

Best regards

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 .

Like this.


Or replace it with this one and save. Anytime someone gives you some code with , make sure to paste it inside this tag 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!

1 Like

Hi @Anonymous

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the 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


Hope this can help you solve the issue

Best regards,

Richard | PageFly

1 Like

Its working. Thank you :slightly_smiling_face: