Skip to content

Instantly share code, notes, and snippets.

@Chrisedmo
Last active November 14, 2016 16:46
Show Gist options
  • Save Chrisedmo/049d840dc8e5530cbe1b4dba08bcfb5e to your computer and use it in GitHub Desktop.
Save Chrisedmo/049d840dc8e5530cbe1b4dba08bcfb5e to your computer and use it in GitHub Desktop.
#CraftCMS Easy Responsive Background Images
{% 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