Re: Issue with Mobile Product View

Issue with Mobile Product View

Esra47
Excursionist
51 0 6

Hello,

I have a problem with the mobile product view.

Some images are only displayed halfway, as shown in this example:

Here the link: https://et1xgdlyz2fwrbih-71988969740.shopifypreview.com 

Is it possible to fix this problem? 

Bildschirmfoto 2024-05-23 um 11.35.57.png

Replies 4 (4)

TerenceKEANE
Shopify Partner
512 86 80

Hi!

 

In fact, this issue is related to image sizing. If I remember correctly, you previously had a problem with the 'slider'. Sometimes the image issue doesn't give the exact result you want with code.

 

Now, the resolution of the images you uploaded is as follows:

 

Desktop: 713x1070

Thumbnails: 116x116

 

So the thumbnails version is 1:1 and the other is 2:3, which is causing the issue.

 

The code below will stabilize the ratio for both. You can try it if you want?

 

 

    .product--small .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
        aspect-ratio: 2 / 3;
    }

 

TerenceKEANE_0-1716459037692.png

 

 

Terence

 

 

★ Looking for Dedicated Premium Coding Support? Join our unique "PREMIUM SUPPORT" service starting at 59 USD for 1 MONTH!
★ Get skilled Shopify developers at BUDGET-FRIENDLY RATES — explore Novajetsoft.com for a rapid quote!
If my support was a lifeline for you, The COFFEE  
would be the anchor keeping me steady!
★ For Quick response --> WhatsApp | Email --> info@novajetsoft.com | Software Engineer - Specializing In Advanced E-Commerce Websites
Esra47
Excursionist
51 0 6

Where should I insert the code?

TerenceKEANE
Shopify Partner
512 86 80

Sorry, I forgot to tell you.

 

Navigate to the 'Edit Code' option in your theme settings, then search for “base.css” in the search bar and add below codes.

 

 

 .product--small .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
aspect-ratio: 2 / 3;
}

 

shopify.base.css.jpg

 

★ Looking for Dedicated Premium Coding Support? Join our unique "PREMIUM SUPPORT" service starting at 59 USD for 1 MONTH!
★ Get skilled Shopify developers at BUDGET-FRIENDLY RATES — explore Novajetsoft.com for a rapid quote!
If my support was a lifeline for you, The COFFEE  
would be the anchor keeping me steady!
★ For Quick response --> WhatsApp | Email --> info@novajetsoft.com | Software Engineer - Specializing In Advanced E-Commerce Websites
Esra47
Excursionist
51 0 6

I tried, but it didn't work. Is it possible that I inserted the code in the wrong place?

 

Bildschirmfoto 2024-05-23 um 13.20.39.png