Banner Image Mobile Size - Fixed Behaivour

Hi,

My store is https://www.avabear.shop/

Struggling to find a solution to this:
I’ve used an image banner and set the image behaviour to fixed to create a scrolling effect. On desktop it looks great, however on mobile it has stretched the image.

Is there any way I can decrease the width/size of the image or do I have to upload another image that is specific to mobile?

Hi @Braded93

You can try to add this code in Custom CSS of that section on your Online store > Themes > Customize and check if it fits your request

@media(max-width: 749px) {
img {
    object-fit: contain;
}
}