Hello!
I’m getting incredibly close to resolving this, with great help from this community. So far my header when transparent on the home page is converting all font and icon colour to white (which is perfect) and when the header isn’t transparent (sticky header non-transparent when you scroll down) the correct font and icon colours are applied (which is also great). The final issue I’m facing here is down to when you navigate to any other page on the website, it seems that the header is technically transparent meaning the font and icon colour in the header are white on a white background making them invisible (which is not good).
Preview link: https://ctk6tcwbhdihjnqs-50708545699.shopifypreview.com
What I’m hoping for some help on is to make this snippet of code below in my base.css file to only be applicable to home page and no other pages?
code used is:
{% if .site-header-transparent #Details-HeaderMenu-9 > summary > span %}
color: white;
{% endif %}
}
.site-header-transparent svg path {
fill: white;
}
.site-header-transparent .header__heading-logo {
filter: invert(100%);
}
reference images of the issue:










