Re: Product Image

Product Image

Testing120
Excursionist
29 0 8

My Product Page first image of product start showing to small on mobile and desktop both as seen below:

 

 

img.png

 

Then I added following code in my theme file editor /assets/base.css
" .productView-image.fit-unset .productView-img-container img:not(.zoomImg) {
width: 500px !important;
height: 500px !important;

"

after using this code my image start showing good on desktop device but on mobile device it start showing starched image

Like this on my mobile:

WhatsApp Image 2024-07-22 at 11.51.57 PM.jpeg

 

 

Replies 5 (5)

HasnainDEV
Shopify Partner
11 0 0

What's the URL of your store?

Hasnain Abbas
Testing120
Excursionist
29 0 8

HasnainDEV
Shopify Partner
11 0 0

You can replace in base.css file. Use Width and Height 100% this will fix for both desktop and mobile view without product image stretch.
.productView-image.fit-unset .productView-img-container img:not(.zoomImg) {
width: 100% !important;
height: 100% !important;
}

Hasnain Abbas
Testing120
Excursionist
29 0 8

tried your code didn't worked

 

results: 

Screenshot 2024-07-23 024624.png

 

Testing120
Excursionist
29 0 8

any different solution ?