Hi, is there a way to enable sticky headers only for my product pages?
I just want a normal header for the homepage of my website pages so it is easy to read. Thank you!
P.S. I am using symmetry theme theme
this is my link store: https://vomeroitaly.com/
thanks
Hello @Mdb_Gioto ,
Yes possible but need customization.
If you can just find the classes which are used to make the header sticky.
Once you find it make them conditional
like this
{%- if template == “product” -%}
class will use
{%- endif -%}
If you need help with code part you can drop me an email.
You can find the email in the signature below.
Thanks
Hi,
Do you remember where you add the following code?:
nope, is it possible to find it?
try finding it in theme.liquid
how about header.liquid ?
Good job! Ok so here is the part you need to change:
basically all the code that is inside .section-header {…} need to be put inside like following:
{% if template.name != "index" %}
.section-header {
position: -webkit-sticky;
position: sticky;
}
{% endif %}
so you final code looks like this:
and SAVE
what I did above is that your section header sticky effect only works if page is not homepage