Header changing color & adding info

I am trying to stop my header changing colors when the menu is clicked and also would like to add my email address to the header

Homepage is https://deadsetthreads.com.au/

Hi @AmberWilkinson

You can add this code to theme.liquid file, after in Online Store > Themes > Edit code

{% if template == 'index' %}
{% else %}

{% endif %}

I have tried this and it didnt work

Hello @AmberWilkinson -------> 1) to stop header changing colors when the menu is clicked.

Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.

@media screen and (pointer: fine) {
.link-faded-reverse:hover {
opacity: unset;
}
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Nope that doesnt work either

Can you show me where did you add the code?

Hello @AmberWilkinson

Add below code to end of theme.css file

store-header.header.is-filled .header__logo-image {
    filter: invert(1);
}

If you need further assistance feel free to reach out.
If you find this information useful, a Like would be greatly appreciated. And If this resolves your issue, kindly hit Like and mark it as the Solution! Thank you!

Thank you!

1 Like