How to hide header from collection page in craft theme?

Please help me out in hiding the header from collection page.

Hi @SameerKhan0286 ,

This would require changes to the theme’s code so I’d recommend contacting our support team and asking if this is something our themes team could potentially do for you.

Hi there,

Sure I can help you for this . Could you please provide the URL and permissions for your store so that I can assist you better? You also could DM me

Hello @SameerKhan0286 ,

You can try this code: it will be helpful to you.

Please add this liquid code to your theme.liquid file before the tag:

{% if template == 'collection' %}
.section-header {
display: none !important;
}
{% endif %}

not working

yes I can

https://secretstorybyrafiya.com

Hello @SameerKhan0286

You can try this code: it will be helpful to you.

Please add this liquid code to your theme.liquid file before the tag:

{% if template == 'collection' %}
.header {
    display: none;
}
{% endif %}