Changing color of recently added LinkedIn icon

I just added the LinkedIn icon to the footer, but I’m unable to change its color from black to 93947F.

1 Like

PW is TestAccess

Add fill: #93947F to list-social__link class

Where exactly? Thanks

You can look in theme files for a file like component-list-social.css. If it is there just replace .list-social__link { … } with this:

.list-social__link {
  align-items: center;
  display: flex;
  padding: 1.3rem;
  color: rgb(var(--color-foreground));
  fill: #93947F;
}

If you can’t find it you can add this code in theme → customize → theme settings → custom CSS:

.list-social__link {
  fill: #93947F;
}

Hope it works, cheers :slightly_smiling_face:

That worked beautifully @szops

Thank you!

1 Like