We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Why does my product picture appear smaller on the page?

Why does my product picture appear smaller on the page?

Question_lady
Tourist
5 0 0

I have uploaded product picture in jpg under 2048x2048px, it's a clear photo.

 

However, I only want to show a smaller product photo when not clicked zoom, another side about description page can be bigger but smaller words, how can I make it?

 

smaller.png

Replies 4 (4)

GemPages
Shopify Partner
5625 1262 1292

Hello @Question_lady 

 

To provide you with the most precise solution in this case, could you please share your page URL ( with pass if your store password is enabled )?

 

Thank you and hope to hear from you.
Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
Question_lady
Tourist
5 0 0

Hi GemPages Support Team,

 

Thanks for attention of my post, as follow:

 

https://magical-natural.com/

pw: payske

zaczee
Globetrotter
855 46 44

Hi @Question_lady ,

 

Add this CSS code
Online Store > Themes > Edit code > Assets > custom.css or theme.css

.grid__item.product__media-wrapper { max-width: 35% !important; width: 35% !important; }
.product__info-wrapper.grid__item { max-width: 65% !important; width: 65% !important; }

 

Question_lady
Tourist
5 0 0

I've tried below 2 but don't any changes on mobile or computer.


.grid__item.product__media-wrapper { max-width: 10% !important; width: 90% !important; }
.product__info-wrapper.grid__item { max-width: 10% !important; width: 90% !important; }

 

@media only screen and (min-width: 750px) {
.grid__item.product__media-wrapper { max-width: 10% !important; width: 90% !important; }
.product__info-wrapper.grid__item { max-width: 10% !important; width: 90% !important; }
}