Skip to content

Instantly share code, notes, and snippets.

@dpw1
Created August 26, 2026 00:25
Show Gist options
  • Select an option

  • Save dpw1/dd647ed5a2fe57e5610d3502fe741896 to your computer and use it in GitHub Desktop.

Select an option

Save dpw1/dd647ed5a2fe57e5610d3502fe741896 to your computer and use it in GitHub Desktop.
EZFY Dawn theme: swap header logo on scroll
{% if section.settings.scroll_logo != blank %}
<style>
.scrolled-past-header .header__heading-logo {
content: url({{ section.settings.scroll_logo | image_url: width: 400 }});
}
</style>
{% endif %}
{% schema %}
{
"name": "Scroll logo swap",
"settings": [
{
"type": "image_picker",
"id": "scroll_logo",
"label": "Logo shown after scrolling"
}
],
"presets": [
{ "name": "Scroll logo swap" }
]
}
{% endschema %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment