Created
August 26, 2026 00:25
-
-
Save dpw1/dd647ed5a2fe57e5610d3502fe741896 to your computer and use it in GitHub Desktop.
EZFY Dawn theme: swap header logo on scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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