How to adjust image banner view for better product display?

Hi if anyone can help that would be great.

https://icb3ndrl65f4mtn1-60589605120.shopifypreview.com

I want on the desktop image banner to zoom out so you can see more of the product around the waist and the models head.

On the Mobile version can you move the image to the left a bit as the head is looking a little cut off

Thanks Finn

Hi Finn,

Please try this CSS.
You can change the % value according to your needs. Maybe you might need to write some media query for responsive.

.banner__media.media>img {
    object-position: center 15%;
}

Thank you

Didn’t work :confused:

Thanks

Due to the height and width of the banner either you will able to show the model face or your product on desktop.
Previous code will help you to show the model face. If you want to show product then you can use this.

.banner .banner__media.media>img {
    object-position: center bottom;
}