Is it possible to make the home menu transparent in craft theme? I’d like it to only be transparent on desktop, and when you scroll down it should fade into colour again.
https://6zxs1vrd206ko0pk-57692029064.shopifypreview.com
Any help is greatly appreciated!
hi @TinyTrender
You can try follow this path:
Themes => edit code => layout => theme.liquid
and add this code to bottom of the file theme.liquid before the tag
{% if request.page_type == 'index' %}
{% endif %}
Thank you so much! The only problem is that when you scroll up, the menu is still transparent. Is there a way to make it have the normal, white background when you’re scrolling up or down?