Hi,
I have a question regarding the “Prestige” theme.
In the “shop the look” section, we have uploaded an image with resolution 1200x1200px as it is recommended.
Unfortunately, the featured image is huge and we would like to have the entire image smaller. I found the code under “shop-the-look.liquid”, however I can’t see where I can make the image smaller.
Can anyone help me?
CODE:
{%- comment -%}If we have no image and no product for the block, we display a placeholder{%- endcomment -%}
{%- if show_on_boarding -%}
{%- capture placeholder -%}{% cycle 'collection-1', 'collection-2', 'collection-3', 'collection-4' %}{%- endcapture -%}
{{ placeholder | placeholder_svg_tag: 'PlaceholderSvg PlaceholderSvg--dark' }}
{%- else -%}
{%- if block.settings.image != blank -%}
{%- assign image_url = block.settings.image | img_url: '1x1', format: 'pjpg' | replace: '_1x1.', '_{width}x.' -%}
{%- capture supported_sizes -%}{%- render 'image-size', sizes: '200,400,600,700,800,1000,1200', image: block.settings.image -%}{%- endcapture -%}
{%- else -%}
{%- capture placeholder -%}{% cycle 'collection-1', 'collection-2', 'collection-3', 'collection-4' %}{%- endcapture -%}
{{ placeholder | placeholder_svg_tag: 'PlaceholderSvg PlaceholderSvg--dark' }}
{%- endif -%}
{%- endif -%}