Ride Theme - Change custom social icon color on mobile (Desktop is correct)

In an effort to drive traffic to our Discord, I swapped the Vimeo icon for a Discord icon in my theme’s code. Our footer icon color is correct and consistent, however, in the mobile menu, the Discord icon is black whereas the other icons are white.

How can I keep the footer color black but make the mobile menu Discord icon be white/consistent like the others?

For reference, here’s our website: https://shop.hivemapper.com/

Hi @BP95 ,

This is David at SalesHunterThemes.

Thank you for your question.

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code.

Go Assets folder → base.css file.

Add this following code at the bottom of page.

.list-social__item svg path {
 fill: currentColor;
}

Here are the results:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

David | SalesHunterThemes team

Hello @BP95

The best way is to make a SVG adapt to current color by adding fill=“currentColor” attribute to the path tag of your Discord SVG. See the part I mark in this code

<path **fill="currentColor"** d="M616.496 68.4704C571.831 47.6955 524.073 32.5965 474.143 24C468.011 35.0212 460.847 49.8446 455.908 61.6373C402.832 53.7021 350.243 53.7021 298.143 61.6373C293.205 49.8446 285.878 35.0212 279.691 24C229.708 32.5965 181.895 47.7506 137.231 <p>…(rest of the SVG code)</p>

Thank you for the simple instructions - worked like a charm!

I appreciate your response, however, another reply was accepted as the solution. Thanks again!

You’re welcome! I’m glad I could provide the information you needed.

No problem. Hope you the best!