Increase size related product photos on computer / debut theme

Hey,

I would like to know how can I increase the size of the related product photos on computer on a product page ?

Thanks.

Link : https://relentless-clothingz.myshopify.com

Password : cohghozo

@Ulysse1300

can you please share theme.js file

The code is too big to be send (more than 100.000 words), but I can send you my related product section.


{% assign number_of_related_products = section.settings.number_of_related_products | plus:1 %}
{% if collection == null or collection.handle == 'frontpage' or collection.handle == 'all' %}
{% assign found_a_collection = false %}
{% for c in product.collections %}
  {% if found_a_collection == false and c.handle != 'frontpage' and c.handle != 'all' and c.all_products_count > 1 %}
    {% assign found_a_collection = true %}
    {% assign collection = c %}
  {% endif %}
{% endfor %}
{% endif %}
{% if collection and collection.products_count > 1 %}

{% assign product = current_product %}
{% endif %}

Hi there,
Jack from OpenThinking here!

Open the following file:

/snippets/shopifyexplorer-related-by-collection.liquid

Search inside the file for:

{%- assign grid_item_width = 'small--one-half medium-up--one-quarter' -%}

Change medium-up–one-quarter with one of the following:

medium-up--one-half
medium-up--one-third
medium-up--one-quarter
medium-up--one-fifth
medium-up--one-sixth
medium-up--two-sixths
medium-up--three-sixths
medium-up--one-eighth
medium-up--two-eighths
medium-up--four-eighths
medium-up--five-tenths
medium-up--one-twelfth
medium-up--two-twelfths
medium-up--three-twelfths
medium-up--four-twelfths
medium-up--six-twelfths

play with these and see which one fits you best.

let me know if this works for you. If yes: accept my answer and give me a thumbs up! Thank you.

It looks almost good. I wanted to have the width to be as the same as the bestseller section on the home page. Is it possible ?