Change colour of Footer on diffent collection pages

Topic summary

A Shopify store owner using the Prestige theme wants to customize footer colors for specific collection pages:

Desired Changes:

  • Black footer for the “Lions for Life” collection page
  • Green footer for the “Daniel Heart” collection page

Solutions Provided:

Two community members offered CSS-based solutions involving:

  • Accessing Online Store → Theme → Edit Code
  • Locating the theme.liquid file
  • Adding custom CSS code targeting specific collection IDs

One responder suggested the code should be placed at the bottom of theme.liquid, while another recommended inserting it after the <head> tag. Both solutions use conditional logic to apply different footer background colors based on collection IDs.

Additional Recommendation:
One helper suggested adding a product media slideshow to improve customer experience and facilitate purchases.

Note: The discussion remains open; no confirmation yet on whether the solutions resolved the issue.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

Hi @DJLondon1959

Please go to Online Store > Themes > Edit code > open theme.liquid file, add this code after

{% if collection.id == 485863424317 %}  

{% endif %}
{% if collection.id == 485007687997 %}  

{% endif %}