Hi,
ik ben bezig met het inrichten van mijn webshop. Hierin werk ik samen met Gogetters en zet ik de producten van de groothandel op mijn website. Echter zijn de productfoto’s allemaal verschillend in formaat waardoor het er erg onoverzichtelijk en rommelig uitziet. Weet iemand hoe ik ervoor kan zorgen dat alle productfoto’s dezelfde grootte worden?
Alvast bedankt!
Hoi Romana, ik neem aan dat het je inmiddels al gelukt is om je vraag op te lossen? Zo niet, ik kan je eventueel wel helpen
Laat het maar weten!
Hey [email removed]Romana2024,
Yeah that’s a classic dropshipping headache—wholesaler pics are all over the place sizes, makes the grid look like a mess.
Quick fixes to make 'em all uniform without re-editing every single photo (since you’re using Gogetters/wholesale feeds):
-
Easiest native way (most themes in 2026)
Go to Online Store > Themes > Customize.
Jump to a Collection page (or Products > Default product if it’s there).
Look under Product grid / Product cards section → usually there’s an “Image aspect ratio” or “Image size” setting.
Set it to Square (1:1) or Portrait (whatever fits your wellness vibe best).
Many themes auto-crop/fill to that ratio → bam, all cards same height/width, looks clean instantly.
If it’s set to “Adapt” or “Original”, that’s why it’s wonky—change it!
-
If no setting or still messy → add a bit of CSS (super fast)
In Customize > Theme settings (or at bottom) → Custom CSS box, paste something like:
CSS
.card__media img, .product-card__image img {
object-fit: cover !important; /* crops to fill nicely without stretch */
width: 100% !important;
height: 100% !important;
}
Or for no crop (shows full image, might add letterbox):
CSS
object-fit: contain !important;
Save & preview on mobile/desktop. Tweak if needed (e.g. add fixed height like height: 250px; to the container).
-
Pro move for long-term (dropshipping scale)
Upload a consistent size to start: aim for 2048x2048 px square (Shopify loves it, zoom works).
Use free tools like Canva bulk resize, BulkResizePhotos.com, or Shopify’s own Image Resizer tool before importing from Gogetters.
Or grab a cheap app like “Bulk Product Image Edit” or “Image Optimizer” to auto-crop/resize all existing ones in one go.
Start with the theme customize option first—90% of the time that sorts it without code. Test on a collection page.
If you’re on Dawn/Refresh/Sense or whatever theme, lemme know which one and I can give more exact steps. Got you covered! 