Adjusting photos in "Added to your cart" popup from Dawn theme

Hello everyone, I have small issue with “Added to your cart” popup. Products’ photos look great on desktop, tablet because they are shown as vertical rectangles. However, photos are stretched out because they are shown as horizontal rectangles on mobile.

Is there any way that I can adjust photos in “Added to your cart” popup to vertical rectangles?

Thank you in advance.

Here is photo from mobile:

And here are photos from tablet and desktop

my website : scents.ltd

hi @Scents_LTD ,

i’m checked on your site and give to you the solve:

You can add the short code below at the bottom of assets/base.css file.

@media only screen and (max-width: 749px){
img {
width: 100%;
height: auto ! important;
}

}

Hope can helpful to you!

It works perfecrly.

Thank you so much!

1 Like