Alternate logo on home page header - Galleria Theme

Hi there,

I would like the logo in my header on home page to be different to the logo in every other page header. I am using the Galleria theme.

This is not an option in theme editor/settings so I will need to add code in liquid but not sure what or where.

Thanks in advance for any assistance. :slightly_smiling_face:

@piedpiper ,

I can answer the where part :slightly_smiling_face: you need to look for logo code in header.liquid under sections. Now you would need to make the changes conditional based on template type something like

{% if template == 'index' %}
//display this logo
{% else %}
// display other logo
{% endif %}

Thanks @Propero for the help.

Could you please be a little more specific, I can’t seem to figure out which part to change or where to add (I am very new to code).

I have attached my theme file below.

Thanks!