If you are using WooCommerce for an online store plugin for your WordPress site, you may want to change the size of the product image shown on product page. Just add this WordPress Code Snippet to your CSS stylesheet in your current WordPress theme in order to change the width of the product page product image in WooCommerce.
/** * Change Product Image width on WooCommerce Product Pages * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .single .images { width: 30%!important; }
Just change the width I listed above with whatever width you want your WooCommerce product page product image to be.
Leave a Reply