Change colour of newsletter subscribe box and social links

Hi,

I’ve looked around how to change the text in the footer only and successfully changed the text but unfortunately the newsletter signup box is still grey and the social icons are also still grey, is there a way to change them to white?

Here is the store - https://1uj6jou3nyu1q4bz-5793742905.shopifypreview.com

Many thanks,

Callum

Hi @BumbleBabies ,

#NewsletterForm--footer {
    background: #fff;
}

Add this css at the bottom of

Online Store->Theme->Edit code->Assets->base.scss.liquid

1 Like

Ah brilliant @oscprofessional ! And the social icons?

Hi @BumbleBabies ,

a.link.list-social__link {
    color: #fff;
}
1 Like

@oscprofessional You legend, thank you!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
.list-social__item .icon path {
fill: #fff;
}