Product foto’s verschillen in grootte

Topic summary

Een webshop-eigenaar werkt samen met Gogetters en plaatst groothandelsproducten op de website, maar ervaart problemen met inconsistente productfoto-afmetingen. Dit zorgt voor een rommelig en onoverzichtelijk uiterlijk.

Situatie:

  • Productfoto’s van de groothandel hebben verschillende formaten
  • Gebruiker zoekt een oplossing om alle foto’s uniform te maken

Reacties:

  • Eén gebruiker biedt hulp aan en vraagt of het probleem inmiddels is opgelost
  • Een andere gebruiker toont interesse in de oplossing

Status: De discussie blijft open zonder concrete oplossing of antwoord van de oorspronkelijke poster.

Summarized with AI on October 24. AI used: claude-sonnet-4-5-20250929.

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 :slightly_smiling_face: Laat het maar weten!

Ben ook wel benieuwd

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):

  1. 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!

  2. 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).

  3. 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! :rocket: