Last active
March 27, 2023 09:26
-
-
Save dpw1/0be85df08819873e6dd8f3a02ce17005 to your computer and use it in GitHub Desktop.
Add a background image to any Shopify theme
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
<style> | |
html, body, | |
[id*='shopify-section']:not([id*='announcement']):not([id*='header']):not([id*='footer']), | |
[id*='shopify-section']:not([id*='announcement']):not([id*='header']):not([id*='footer'])> [class*='background']{ | |
background: url("replaceme.jpg") !important; | |
background-size: cover !important; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment