Need to change logo color on secondary pages

Hello,

My website homepage logo color is white due to the image i have in the background. When i go to my other website pages, i am not able to see my logo because my background is white. Is there a way to upload a black logo that only works on specific sections?

Hi @Macagahu

Use the below liquid code to replace the logo file in header.liquid file.

{% if request.page_type == 'index' %}
// Homepage
{% else %}
// other pages
{% endif %}

If this is coming at a specific collection please refer to the below video to implement the same.