[BigCommerce] Make product image always centered on product details page
Add the code below in your Storefront > Footer Script:<style>
@media (min-width: 801px) { .productView-imageCarousel-main-item > a { position: relative; display: block; height: 0; padding-top: 100%; } .productView-imageCarousel-main-item > a img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
}
</style>This code
…
19th Jan 2018
Fix product main image does not show up on product page on BigCommerce theme Supermarket, SarahMarket, ParallaxBag
Problem happen when BigCommerce change product main image URL recently.To fix this problem, please upgrade all themes to the latest version.If your theme already modified, you can fix this issue manually by editing file templates/components/products/product-view.htmlReplace all string:{{#if ../product.main_image.data '==' this.data}} slick-current{{/if}}By:{{#startsWith this.data ../product.main_image.data}} slick-current{{/startsWith}}If you have any problem, feel free to contact us at&nbs
…
7th Nov 2017