Hey!
This is the multicolumn I want to increase the image size of.
This is the code I think is what corresponds to this section (below). How might I change the code to increase the size of these images? I will be SO grateful for any help!
{%- if block.settings.image != blank -%}
{% if section.settings.image_ratio == 'adapt' or section.settings.image_ratio == 'circle' %}
{% assign spaced_image = true %}
{% endif %}
{%- capture sizes -%}
(min-width: 990px) {% if section.blocks.size <= 2 %}710px{% else %}550px{% endif %}, (min-width:
750px) {% if section.blocks.size == 1 %}710px{% else %}550px{% endif %}, calc(100vw - 30px)
{%- endcapture -%}
{{
block.settings.image
| image_url: width: 2000
| image_tag:
loading: 'lazy',
sizes: sizes,
widths: '275, 550, 710, 2000',
class: 'multicolumn-card__image'
}}
