How to adjust image hight and width?

Hello friends, how can I adjust the hight and width of this image?

Hi @NikosBat

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
@media screen and (min-width: 769px){
.multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--full-width.multicolumn-card-spacing img {
    width: auto !important;
    height: 100% !important;
}
.multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--full-width.multicolumn-card-spacing .media.media--transparent.media--adapt {
    padding-bottom: 150px !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy