I have the theme streamline. After an update my images in the product site have changed in sizes so some are zoomed in and some are not. How do I get them back to a standard size?
Topic summary
A user experienced inconsistent product image sizing on their Shopify Streamline theme after an update—some images appear zoomed in while others display at different scales.
Suggested troubleshooting steps:
- Navigate to Online Store > Themes > Customize
- Check product page section for image size or cropping settings
- Look for “Product Image Size” or “Aspect Ratio” options
- Set to consistent values like “Square” or “Original”
- If needed, add custom CSS:
img { max-width: 100%; height: auto; }
Current status:
The user changed the setting to “Natural” but one image (middle picture, second row) remains noticeably smaller than others. The issue persists despite initial adjustments, and a screenshot was provided showing the inconsistent sizing.
Theme updates can sometimes tweak image settings, so head to your Shopify admin under Online Store > Themes > Customize, and check the product page section for any new image size or cropping options that might’ve reset.
Look for settings like “Product Image Size” or “Aspect Ratio” and set them to a consistent value like “Square” or “Original” to standardize everything. If that’s not it, peek at your theme’s CSS (Customize > Theme Settings > Custom CSS) and add a quick fix like img { max-width: 100%; height: auto; } to force consistency.
