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
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:
.list-social__link:hover .icon { transform: unset; }Implementation methods suggested:
<style></style> tags and place it in theme.liquid file above the </head> tagOutcome:
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.
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
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!
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!
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
Its working. Thank you ![]()