Move collection image up

Move collection image so that it looks like looks on mobile. Who can help?

Hi @RunnsSommen

Can you send me the page link that you want to change please?

Thank you

Here, it not really active yet (but soon) - https://dxf00a-wf.myshopify.com/collections/merchandise

Hi @RunnsSommen

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 750px) {
   .collection-hero .collection-hero__image-container {
        height: auto;
        min-height: 40rem;
    }
    .collection-hero__inner.page-width {
    flex-direction: column;
}

.collection-hero__image-container.media.gradient img {
    object-fit: fill;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thanks, modified it with contain instead of fill to get rid of the stretch that messed up the ratio.