Last active
November 14, 2016 16:46
-
-
Save Chrisedmo/049d840dc8e5530cbe1b4dba08bcfb5e to your computer and use it in GitHub Desktop.
#CraftCMS Easy Responsive Background Images
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
{% set image = entry.image.first %} | |
<style type="text/css"> | |
.hero-image { | |
background-image: url('{{ image.url({ width: 600 }) }}'); | |
} | |
@media (min-width: 600px) { | |
.hero-image { | |
background-image: url('{{ image.url({ width: 1000 }) }}'); | |
} | |
} | |
@media (min-width: 1000px) { | |
.hero-image { | |
background-image: url('{{ image.url({ width: 1400 }) }}'); | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment