Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi guys, I am currently setting up my website and need some help... I did my research but I could find nothing.
Here's what I am trying to achieve: I have different social media icons, Pinterest, Facebook, Twitter and Instagram however the icons are the same color as the rest of the text but I need each icon to display its original app color ex. twitter light blue, Pinterest red, etc.
In the picture you may not see the icons in the header due to the white icon color on white background due to footer. In the footer you can see the white social icons. The icons in the header and footer need to be changed to each social icons original color. Thanks!
Just incase,
Website: vonmuller.co
Password: hyped4you
Solved! Go to the solution
This is an accepted solution.
Hello
1. Go to your store. Themes > Edit Code
2. Go to Assets > theme.scss.css and paste these lines at the bottom of the file.
svg.icon.icon-facebook {
fill: #3b5998 !important;
}
svg.icon.icon-twitter {
fill: #00acee !important;
}
svg.icon.icon-pinterest {
fill: #E60023;
}
svg.icon.icon-instagram {
fill: #C13584;
}
as Instagram contains a combination of different colors so you can change the SVG of Instagram icon with gradient color SVG.
If this helps you please like and accept as a solution to help other people. Hire me or mail me for any queries.
This is an accepted solution.
Hello
1. Go to your store. Themes > Edit Code
2. Go to Assets > theme.scss.css and paste these lines at the bottom of the file.
svg.icon.icon-facebook {
fill: #3b5998 !important;
}
svg.icon.icon-twitter {
fill: #00acee !important;
}
svg.icon.icon-pinterest {
fill: #E60023;
}
svg.icon.icon-instagram {
fill: #C13584;
}
as Instagram contains a combination of different colors so you can change the SVG of Instagram icon with gradient color SVG.
If this helps you please like and accept as a solution to help other people. Hire me or mail me for any queries.