Copy {
"default": {
"src": "https://www.lean-labs.com/hubfs/sr-assets/pattern-library/sr-bling-graphic-01/sr-bling-graphic-01.jpg",
"alt": "Describe your image",
"width": "900",
"height": "600"
},
"label": "Image",
"name": "bling_image",
"type": "image",
"help_text": "Recommended size: 900x600px"
},
{
"default": true,
"label": "SR Default Image Size",
"name": "sr_default_image_size",
"type": "boolean"
}
Copy
{% if module.sr_default_image_size %}
{{ var.image(module.bling_image.src, '600', module.bling_image.alt) }}
{% else %}
{{ var.image(module.bling_image.src, module.bling_image.width, module.bling_image.alt) }}
{% endif %}
Copy .{{ name }} {
{{ var.bg_image(module.background_image.src, '600') }}
background-size: cover;
background-repeat: no-repeat;
background-position: center;
position: relative;
}
@media (min-width: 768px) {
.{{ name }} {
{{ var.bg_image(module.background_image.src, '1440') }}
}
}