Footer Section Customize ( Shopify Savor Theme )

Hello Everyone!
I am using the Savor theme on my Shopify store. I would like to change the color of the footer section so that the Terms and Policies links, the © 2026 Svelteclothes text, and the social media icons appear in white, because they are currently not clearly visible.

Additionally, I would like to add the text “All Rights Reserved” next to © 2026 Svelteclothes in the footer. Please help me. Thanks.

Store: https://svelteclothes.myshopify.com/

password: Admin

Hi @dreamtechzone_5 , I have visited your store. There are no icons in bottom policies and link section, you have deleted social media profile links. add the links in social media icon link

Dear @dreamtechzone_5

I have checked your website. Some elements have been hidden by you, so the style snippet below will help highlight the remaining parts. Please go to the Edit theme section and add the following code:

...
button.policy-list-trigger.button-unstyled {
    color: white !important;
}

.footer-utilities__text {
    color: white !important;
}

.footer-utilities__text a {
    color: white !important;
}
...

Regards,
Eric from Shopplaza

Add this code to Custom CSS in Theme settings

span.footer-utilities__text:after {
    content: 'All Rights Reserved';
    margin-left: 4px;
}

Result

Where code need to be added


Best regards,

Dan from Ryviu: Product Reviews App

The color of the text in the Terms of Service is not changing. Also I want to keep the color of social icons white. Now it doesn’t look clear.

© 2026 Svelteclothes I want to add (comma) after this text.

Please update the code

span.footer-utilities__text:after {
    content: ', All Rights Reserved';
    margin-left: 4px;
}

Showing space before (Comma). (Comma) is showing space before it. Also, can the terms of service and social icon color be kept white?

Dear @dreamtechzone_5

=> Please remove the “…” symbols. I’m using them to represent your existing code.

To change the icon color, please add this code in below file base.css:

.social-icons__icon {
    color: white !important;
}

Regards,
Eric from Shopplaza

The Terms And Policies text color has not changed.

Dear @dreamtechzone_5

Please remove the dots in the area I’ve highlighted in red.

Regards,
Eric from Shopplaza

Great, it worked. © 2026 Svelteclothes I added a comma after the text. But showing space before (Comma). I want to remove it.

Dear @dreamtechzone_5

Just delete the area I’ve circled in red. That white space will disappear.

Regards,
Eric from Shopplaza

The text is not visible when hovering over the Terms of Service.

Dear @dreamtechzone_5

Please add below code to fix it:

#terms-policies-popover a.footer-utilities__text {
    color: var(--color-foreground-muted) !important;
}

Regards,
Eric from Shopplaza

@dreamtechzone_5

You can add a small CSS snippet to override the default colors.

  1. Go to Online Store → Themes → Customize → Theme Settings → Custom CSS (or in assets/theme.css / assets/theme.scss.liquid).

  2. Add this code:

/* Make footer links, text, and social icons white */
.footer a,
.footer .footer-social-icons svg,
.footer .footer__text {
    color: #ffffff !important;
}

Thanks!