Hi
Can someone help me fix my product page images? The main image displays perfectly but when I select a thumbnail image the image shrinks smaller and to the left, I want all images to display like the main image.
Any help would be appreciated
Many Thanks
Hi @HomeEnterprise
can you share your store url & password (if applicable) then I can check and give you the solution
Please share the link to your store
hey @HomeEnterprise
share the URLs of your website plz
Thank you @Dan-From-Ryviu @Mustafa_Ali @BiDeal-Discount
Website Url: https://www.homeenterprise.co.uk/
Password: Enterprise1
Appreciate your help
Many Thanks
Hi @HomeEnterprise
Let’s go to your admin → Sale channels → Online store → edit code your current theme.
Open file base.css then scroll down to bottom of that file and add this code:
@media screen and (min-width: 990px) {
.product:not(.product--columns) .product__media-list .product__media-item {
width: 100%;
}
}
It’s will work as you expected:
Please add this code to Custom CSS of your theme to solve the issue
.product__media-item { width: 100% !important; }
Thank You so much it worked!