How can I reduce the size of my main product image?

Hi, my main image on the product page (desktop) is quite large and I would like it to be around 55-60% of the section and the rest the product info, atc button, etc.

How can I do this?

URL: https://www.chicway.nl/products/sofia-handtas

Hi @dialup !
You can try the following steps:

1- In themeOnline StoreActionEdit code

2- Go to the Asstes → open component-product.css file

3-Find this code in your file

and replace with the one below:

.productView-image.fit-unset .productView-img-container img:not(.zoomImg) {
    position: initial;
    transform: inherit;
    width: auto;
    height: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    top: auto;
    display: inherit;
    max-height: 500px;
}

Kindly accept the solution if this solves your problem. Thank you!