Platform Guide 20 min read

Wix Image Optimization: Complete Guide

Master image optimization on Wix. Learn how Wix handles images automatically, best upload practices, gallery optimization, SEO settings, and performance tips for faster Wix sites.

By ImageGuide Team · Published February 15, 2026
wiximage optimizationwebsite builderperformancewix seo

Wix powers millions of websites and handles much of image optimization behind the scenes. But understanding how the platform processes images, what you can control, and where its automatic systems fall short lets you build noticeably faster, better-looking Wix sites. This guide covers everything from upload preparation to advanced Velo code patterns.

How Wix Handles Images

Automatic Processing Pipeline

When you upload an image to Wix, the platform runs it through a multi-stage pipeline:

  1. Storage: Original image is stored in Wix’s media system
  2. Analysis: Wix detects dimensions, format, and content characteristics
  3. Variant generation: Multiple resized versions are created on-demand
  4. Format conversion: WebP and AVIF versions are generated for supporting browsers
  5. CDN distribution: Images are cached on a global CDN for fast delivery
  6. Placeholder generation: Low-quality image placeholders (LQIP) are created

What Wix Does Automatically

FeatureImplementationYour Control
WebP conversionAutomatic via Accept headerNone
AVIF conversionAutomatic for supporting browsersNone
Responsive sizingMultiple sizes generatedPartial (via layout choices)
Lazy loadingApplied to below-fold imagesLimited
LQIP placeholdersBlurred preview while loadingNone
CDN deliveryGlobal edge cachingNone
CompressionApplied at delivery timeQuality setting per image
Metadata strippingEXIF data removed on deliveryNone

Wix Image URL Structure

Wix serves images through its media platform. Understanding the URL structure helps with debugging:

https://static.wixstatic.com/media/
  {media_hash}.jpg           # Original filename hash
  /v1/fill/                  # Transform operation
  w_800,h_600,              # Dimensions
  al_c,                     # Alignment (center)
  q_80,                     # Quality
  usm_0.66_1.00_0.01,      # Unsharp mask
  enc_auto/                 # Encoding (auto-negotiated)
  image.jpg                 # Served filename

URL Parameters Reference

ParameterDescriptionExample
w_Width in pixelsw_800
h_Height in pixelsh_600
q_Quality (1-100)q_80
al_cAlign centeral_c
al_tAlign topal_t
lg_Lanczos sharpeninglg_1
usm_Unsharp mask (amount, radius, threshold)usm_0.66_1.00_0.01
enc_autoAuto format negotiationenc_auto
enc_avifForce AVIF outputenc_avif

Image Upload Best Practices

Getting your upload dimensions right is the single most impactful thing you can do. Upload too small and images look blurry on retina screens. Upload too large and you waste storage and slow down the editor experience.

Use CaseRecommended DimensionsMax File SizeFormat
Hero/Header banner1920x1080500KBJPEG
Full-width background1920x1280500KBJPEG
Strip/Section background1920x900400KBJPEG
Blog featured image1200x630250KBJPEG
Blog inline image1000x750200KBJPEG
Gallery (landscape)1600x1200300KBJPEG
Gallery (square)1200x1200250KBJPEG
Gallery (portrait)1000x1400300KBJPEG
Logo (transparent)500x20050KBPNG
Logo (favicon)192x19220KBPNG
Product image1600x1600300KBJPEG/PNG
Product thumbnail800x800100KBJPEG
Team member photo800x800150KBJPEG
Icon/illustration500x50030KBPNG/SVG
Social sharing (OG)1200x630200KBJPEG

Why These Dimensions?

1920px width for full-width images: Covers most desktop screens including retina at 2x pixel density on standard laptop displays. Going larger provides minimal benefit since Wix will resize down anyway.

1200-1600px for content images: Wide enough for crisp display at content-width (typically 600-800px CSS) on retina screens, without being wastefully large.

Square for products/avatars: Wix crops these to fit various layouts. Square originals give maximum flexibility.

Pre-Upload Optimization

Always optimize before uploading. Wix applies its own compression, but starting with a well-optimized source produces better final results.

# Resize and optimize with ImageMagick
magick input.jpg -resize 1920x1080 -quality 85 -strip \
  -colorspace sRGB -sampling-factor 4:2:0 output.jpg

# Batch optimize a directory
for file in *.jpg; do
  magick "$file" -resize "1920x1920>" -quality 85 -strip "$file"
done

# Convert PNG screenshots to optimized JPEG
magick screenshot.png -quality 90 -strip screenshot.jpg
# Using sharp-cli for batch processing
npx sharp-cli resize 1920 --withoutEnlargement \
  --quality 85 --input "*.jpg" --output optimized/

Format Selection Before Upload

Content TypeBest Upload FormatReason
PhotographsJPEGBest size-to-quality ratio
Logo (transparent bg)PNGPreserves transparency
Logo (solid bg)SVG or PNGSVG scales perfectly
ScreenshotsPNGPreserves text sharpness
IconsSVGResolution-independent
IllustrationsPNG or SVGSharp edges, flat colors
Product (white bg)JPEGSmaller than PNG for photos
Product (transparent bg)PNGMaintains cutout quality
InfographicsPNGText and graphics clarity

Color Space

Always export in sRGB. Other color spaces (Adobe RGB, ProPhoto RGB, CMYK) may cause color shifts on the web:

# Convert color profile to sRGB
magick input.jpg -colorspace sRGB output.jpg

# Verify color profile
identify -verbose input.jpg | grep "Colorspace"

Wix Image Settings

Quality Settings in the Editor

Wix Editor provides image quality controls:

  1. Click on the image in the editor
  2. Click “Settings” or the gear icon
  3. Adjust the quality slider
Quality LevelSettingBest For
Uncompressed100%Never use for web
High80-90%Hero images, portfolio
Medium60-80%Blog images, general content
Low40-60%Thumbnails, backgrounds with overlay

Recommendation: Use 80% quality for most images. The visual difference from 100% is imperceptible, but files are 40-60% smaller.

Focal Points

Focal points tell Wix which part of the image to keep visible when the image is cropped for different screen sizes.

Setting a focal point:

  1. Click the image in the editor
  2. Click “Change Image” or “Settings”
  3. Click “Set Focal Point”
  4. Drag the crosshair to the most important part
  5. Save

When focal points matter:

ElementFocal Point Impact
Header/hero imagesCritical - heavy cropping on mobile
Strip backgroundsCritical - different aspect on each device
Gallery (cropped mode)High - determines visible area
Blog featured imagesHigh - shown at different ratios in feeds
Product imagesMedium - usually displayed at original ratio
Inline content imagesLow - minimal cropping

Image Cropping Options

Wix provides several crop/fit modes:

ModeDescriptionUse Case
FillCovers entire area, may crop edgesBackgrounds, headers
FitShows entire image, may add paddingProduct images, logos
StretchDistorts to fill areaNever recommended
TileRepeats image as patternSubtle texture backgrounds

Wix Pro Gallery offers multiple layouts, each with different performance characteristics:

Gallery LayoutImage LoadingPerformance ImpactBest For
GridLoads visible gridMediumPortfolio, products
MasonryProgressive row loadingMediumMixed-ratio photography
SliderLoads current + neighborsLowFeature showcases
SlideshowLoads current + nextLowPresentations
ThumbnailsLoads thumbs + currentMediumProduct galleries
CollageLoads visible portionMedium-HighCreative layouts
StripSequential loadingMediumHorizontal scrolling
FullscreenLoads current + adjacentLowImmersive photography

Image count per page: Keep galleries under 30 images per page. For larger collections, use pagination or “Load More” patterns.

Gallery image size settings:

SettingRecommendationWhy
Thumbnail resolutionMedium (300-400px)Balances quality and speed
Full-view resolutionHigh (1200-1600px)Crisp on click/expand
Slideshow quality80%Good visual quality, fast transitions
Enable downloadOnly if neededPrevents unnecessary large-image loads

Before uploading a gallery set:

# Prepare gallery images - consistent sizing
for file in gallery/*.jpg; do
  magick "$file" -resize "1600x1600>" -quality 82 -strip \
    -colorspace sRGB "$file"
done

# Create consistent aspect ratio for grid galleries
for file in gallery/*.jpg; do
  magick "$file" -resize 1200x900^ -gravity center \
    -extent 1200x900 -quality 82 -strip "$file"
done

Wix Pro Gallery implements its own lazy loading:

  • Above-fold gallery: First 4-8 images load immediately
  • Below-fold gallery: Loads when scrolled into view
  • Within gallery: Images load as user scrolls/navigates
  • Lightbox: Full-size loads on click

Tip: Place your most important gallery above the fold only if it contains fewer than 8 images. Large galleries in the first viewport delay Largest Contentful Paint (LCP).

Wix Velo (Code) Image Handling

Dynamic Image Display with $w

Wix Velo (formerly Corvid) lets you control images programmatically:

// Set image source dynamically
$w('#myImage').src = 'wix:image://v1/abc123/photo.jpg/photo.jpg#originWidth=1920&originHeight=1080';

// Set from Wix Media URL
$w('#myImage').src = 'https://static.wixstatic.com/media/abc123.jpg';

// Set alt text programmatically
$w('#myImage').alt = 'Sunset over the mountains';

Working with Wix Media Manager

import wixMedia from 'wix-media-backend';

// Get image URL at specific dimensions
const imageUrl = wixMedia.getImageUrl('abc123.jpg')
  .width(800)
  .height(600)
  .quality(80)
  .build();

// Get responsive URLs for different breakpoints
function getResponsiveUrls(imageId) {
  const breakpoints = [
    { width: 480, label: 'mobile' },
    { width: 768, label: 'tablet' },
    { width: 1200, label: 'desktop' },
    { width: 1920, label: 'fullhd' }
  ];

  return breakpoints.map(bp => ({
    ...bp,
    url: wixMedia.getImageUrl(imageId)
      .width(bp.width)
      .quality(80)
      .build()
  }));
}

Dynamic Galleries with Velo

import wixData from 'wix-data';

$w.onReady(async function () {
  // Fetch images from a CMS collection
  const results = await wixData.query('GalleryImages')
    .ascending('sortOrder')
    .limit(50)
    .find();

  // Map to gallery items
  const items = results.items.map(item => ({
    type: 'image',
    src: item.image,
    alt: item.title,
    title: item.title,
    description: item.description
  }));

  // Set gallery items
  $w('#proGallery').items = items;
});

Responsive Image Handling in Velo

import wixWindow from 'wix-window';

$w.onReady(function () {
  const viewportWidth = wixWindow.getBoundingRect().width;

  // Choose image quality based on viewport
  let quality = 80;
  let width = 1200;

  if (viewportWidth <= 480) {
    quality = 70;
    width = 480;
  } else if (viewportWidth <= 768) {
    quality = 75;
    width = 768;
  } else if (viewportWidth <= 1200) {
    quality = 80;
    width = 1200;
  } else {
    quality = 85;
    width = 1920;
  }

  // Apply to hero image
  $w('#heroImage').src = buildOptimizedUrl($w('#heroImage').src, width, quality);
});

function buildOptimizedUrl(originalSrc, width, quality) {
  // Modify Wix image URL parameters
  const url = new URL(originalSrc);
  // Wix URLs can be manipulated via the fill transform
  return originalSrc
    .replace(/w_\d+/, `w_${width}`)
    .replace(/q_\d+/, `q_${quality}`);
}

Wix Image SEO

Alt Text Best Practices

Wix allows alt text on every image element. This is critical for both accessibility and search ranking.

Setting alt text:

  1. Click the image in the editor
  2. Open the image settings panel
  3. Find “What’s in the image? (Alt Text)”
  4. Write a descriptive, keyword-relevant description

Alt text guidelines:

QualityExampleWhy
Poor”image”No context
Poor”IMG_4523.jpg”Filename, not description
Weak”photo of product”Too generic
Good”Blue ceramic coffee mug on wooden table”Descriptive
Best”Handmade blue ceramic coffee mug - 12oz capacity”Descriptive + relevant keywords

File Naming Before Upload

Wix uses your original filename in some contexts. Name files descriptively before uploading:

Bad filenames:
  IMG_4523.jpg
  DSC00291.jpg
  photo (2).jpg
  Screenshot 2024-01-15.png

Good filenames:
  blue-ceramic-coffee-mug.jpg
  mountain-sunset-landscape.jpg
  product-leather-bag-front.jpg
  team-photo-office-2024.jpg

Image Titles and Tooltips

Wix supports image titles (shown on hover in some browsers):

  1. Click the image
  2. Open settings
  3. Add a title in the “Tooltip” field

Use titles to add supplementary information, not to duplicate alt text.

Structured Data for Images

Wix generates some structured data automatically, but you can enhance it:

Automatic structured data:

  • Product images get Product schema
  • Blog post images get Article schema
  • Business logo gets Organization schema

Adding custom structured data via Velo:

// Add to your page's head via Velo
import wixSeo from 'wix-seo';

$w.onReady(function () {
  wixSeo.setStructuredData([
    {
      '@context': 'https://schema.org',
      '@type': 'ImageObject',
      'name': 'Blue Ceramic Coffee Mug',
      'description': 'Handmade blue ceramic mug, 12oz capacity',
      'contentUrl': 'https://static.wixstatic.com/media/abc123.jpg',
      'width': '1600',
      'height': '1200',
      'thumbnailUrl': 'https://static.wixstatic.com/media/abc123.jpg/v1/fill/w_400,h_300/mug.jpg'
    }
  ]);
});

Open Graph and Social Images

Wix automatically generates OG tags, but you should customize them:

  1. Go to Site Settings > SEO
  2. Set default social sharing image (1200x630)
  3. For individual pages, use the SEO panel to set page-specific OG images

OG image specifications:

PlatformRecommended SizeAspect Ratio
Facebook1200x6301.91:1
Twitter1200x6281.91:1
LinkedIn1200x6271.91:1
Pinterest1000x15002:3

Wix Editor vs Wix Studio

Image Handling Differences

Wix offers two editor experiences with different image capabilities:

FeatureWix Editor (Classic)Wix Studio
Image uploadDrag and dropDrag and drop
Focal pointsManual settingManual + AI-assisted
Responsive controlLimited breakpointsFull breakpoint control
Custom CSS for imagesNot availableAvailable
Image animationsBuilt-in effectsBuilt-in + custom CSS
Background imagesPer-sectionPer-element + advanced
Image containersFixed optionsFlexible layout options
Code accessVelo (same)Velo (same)
Performance monitoringBasicAdvanced metrics

Wix Studio Responsive Images

Wix Studio provides more granular control over responsive image behavior:

/* Custom CSS in Wix Studio */
.hero-image {
  object-fit: cover;
  object-position: center 30%; /* Custom focal point via CSS */
}

@media (max-width: 768px) {
  .hero-image {
    object-position: center 50%;
    aspect-ratio: 4/3; /* Different ratio on mobile */
  }
}

Wix Studio Image Layout Modes

ModeDescriptionResponsive Behavior
FillImage fills containerCrops to maintain coverage
FitImage fits within containerMay show padding
FixedExact pixel dimensionsDoes not resize
ScalePercentage-based sizingResizes proportionally
FluidAdapts to parent containerFull responsive

When to Choose Wix Studio Over Classic Editor

Choose Wix Studio when:

  • You need custom breakpoints for images
  • You want CSS-level control over image display
  • You are building for a client and need precise responsive behavior
  • You need complex grid layouts with mixed image sizes

Choose Wix Classic Editor when:

  • You want simpler, drag-and-drop workflows
  • You are building a basic site or blog
  • You do not need fine-grained responsive control

Performance Monitoring

Wix Site Speed Dashboard

Wix provides a built-in performance dashboard:

  1. Go to Dashboard > Analytics & Reports > Site Speed
  2. Review Core Web Vitals scores
  3. Check image-specific recommendations

What to look for:

MetricTargetImage Impact
LCP (Largest Contentful Paint)Under 2.5sHero/banner images are usually LCP
CLS (Cumulative Layout Shift)Under 0.1Missing dimensions cause layout shift
FID (First Input Delay)Under 100msHeavy image JS can block interaction
Total Page WeightUnder 3MBImages are typically 50-80% of weight

Identifying Image Performance Issues

In Chrome DevTools:

  1. Open DevTools > Network tab
  2. Filter by “Img” type
  3. Sort by size (largest first)
  4. Check for:
    • Images over 500KB (likely needs optimization)
    • Images wider than 2000px served to small viewports
    • Multiple format requests (indicates fallback issues)
    • Long TTFB on image requests (CDN issue)

In Lighthouse:

Run a Lighthouse audit and check:

  • “Properly size images” - flags oversized images
  • “Serve images in next-gen formats” - checks for WebP/AVIF
  • “Efficiently encode images” - checks compression
  • “Defer offscreen images” - checks lazy loading

Core Web Vitals and Wix Images

LCP optimization:

  • Ensure hero image is under 200KB
  • Avoid placing a gallery above the fold
  • Use Wix’s built-in image component (not custom HTML)
  • Do not use video backgrounds when an image would work

CLS prevention:

  • Always use Wix image elements (they include width/height)
  • Avoid dynamically loaded images that shift content
  • Set fixed heights on strip/section backgrounds

Common Wix Image Mistakes

1. Uploading Oversized Images

Problem: Uploading 5000x4000px camera originals (4-10MB each).

Impact: Slower editor experience, increased storage usage. While Wix resizes for delivery, the upload and processing takes longer.

Solution: Resize to 1920px on the longest edge before uploading.

# Batch resize all images in a folder
magick mogrify -resize "1920x1920>" -quality 85 -strip *.jpg

Problem: Placing 100+ images in a single gallery on one page.

Impact: Even with lazy loading, the browser needs to process DOM nodes for all images. Memory usage spikes on mobile devices.

Solution:

  • Limit galleries to 30-50 images per page
  • Use pagination or “Load More” functionality
  • Split large galleries across multiple pages or sections

3. Not Setting Focal Points

Problem: Leaving focal points at default (center) for images where the subject is off-center.

Impact: Heads get cropped off in mobile views, products are partially hidden in card layouts.

Solution: Set focal points immediately after uploading, especially for:

  • Portrait/headshot photos (focus on face)
  • Product images with off-center subjects
  • Landscape photos with key elements at edges

4. Using PNG for Photographs

Problem: Uploading photographic images as PNG files.

Impact: PNG files of photographs are 3-5x larger than equivalent JPEG files with no visible quality benefit.

Solution: Use JPEG for photographs, PNG only for:

  • Images requiring transparency
  • Graphics with text or sharp edges
  • Screenshots and UI captures

5. Ignoring Mobile Preview

Problem: Optimizing images for desktop only, never checking mobile appearance.

Impact: Cropped subjects, unreadable text overlays, slow mobile loading.

Solution: Always check the mobile preview before publishing. Pay special attention to:

  • Hero images (heavy cropping on narrow screens)
  • Text overlays on images (font size and positioning)
  • Gallery layouts (column count changes)

6. Using Image Backgrounds for Content Images

Problem: Placing important images as section backgrounds instead of image elements.

Impact: Background images do not receive alt text, are not indexable by search engines, and cannot be saved by visitors.

Solution: Use background images only for decorative purposes. Use image elements for any content that conveys information.

7. Duplicate Images at Different Sizes

Problem: Uploading multiple manually-resized versions of the same image.

Impact: Wasted storage, increased management complexity. Wix already generates multiple sizes automatically.

Solution: Upload one high-quality version at recommended dimensions. Let Wix handle the resizing.

Wix vs External CDN

When Wix’s Built-In CDN Is Sufficient

Wix’s CDN handles standard image delivery well:

  • Automatic WebP/AVIF conversion
  • Global edge caching
  • Responsive image generation
  • Adequate for most websites

When to Use an External CDN

Consider an external CDN like Sirv alongside Wix when you need:

FeatureWix Built-inSirv CDN
Basic image deliveryYesYes
WebP/AVIF conversionYesYes
360-degree spin viewsNoYes
Deep zoom (high-res pan)NoYes
Smart cropping (AI)LimitedAdvanced
Custom watermarkingNoYes
Image profiles (presets)NoYes
Real-time transformationsLimitedExtensive
Video optimizationLimitedYes
Batch AI processingNoYes (via Sirv AI Studio)

Integrating Sirv with Wix

You can use Sirv for advanced image features while keeping your Wix site:

Using Sirv images in Wix HTML components:

<!-- Embed in Wix HTML iframe component -->
<div class="sirv-container">
  <!-- Basic optimized image -->
  <img
    src="https://demo.sirv.com/example.jpg?w=800&q=80&format=optimal"
    alt="Product image"
    loading="lazy"
  />

  <!-- 360 spin view -->
  <div class="Sirv" data-src="https://demo.sirv.com/Products/spinner.spin"></div>
  <script src="https://scripts.sirv.com/sirvjs/v3/sirv.js"></script>

  <!-- Deep zoom image -->
  <div class="Sirv" data-src="https://demo.sirv.com/example.jpg?zoom=true"></div>
</div>

Using Sirv via Velo for dynamic images:

// Build Sirv URLs for advanced transformations
function getSirvUrl(imagePath, options = {}) {
  const params = new URLSearchParams();
  if (options.width) params.set('w', options.width);
  if (options.height) params.set('h', options.height);
  if (options.quality) params.set('q', options.quality);
  params.set('format', 'optimal');

  return `https://youraccount.sirv.com/${imagePath}?${params.toString()}`;
}

// Use for product images with smart cropping
const productUrl = getSirvUrl('products/bag.jpg', {
  width: 800,
  height: 800,
  quality: 80
});

Batch Processing with Sirv AI Studio

For large-scale image preparation before uploading to Wix, Sirv AI Studio offers batch processing:

  • Background removal: Remove backgrounds from product photos in bulk
  • Background replacement: Add consistent backgrounds across product lines
  • Smart cropping: AI-powered cropping for consistent compositions
  • Batch resize: Prepare images at exact Wix-recommended dimensions

This is particularly useful for e-commerce sites with hundreds of product images that need consistent treatment before uploading to Wix.

Wix Stores (E-commerce) Image Optimization

Product Image Requirements

Image TypeRecommended SizeNotes
Main product1600x1600Square for consistent grid display
Additional angles1600x1600Maintain consistent size and style
Zoom detail2000x2000Higher resolution for zoom feature
Product variant1200x1200Each color/option gets its own image
Category banner1920x600Wide format for category headers

Product Photography Tips for Wix

Consistent backgrounds:

  • Use white or light gray for most products
  • Maintain consistent lighting across all products
  • Consider Sirv AI Studio for batch background removal

Multiple angles:

  • Front, back, side, and detail shots
  • Aim for 4-6 images per product
  • Include lifestyle/in-use shots

Preparing product images:

# Standardize product images to square with white background
magick input.jpg -resize 1400x1400 -gravity center \
  -background white -extent 1600x1600 \
  -quality 85 -strip output.jpg

# Batch process a product shoot
for file in raw-products/*.jpg; do
  filename=$(basename "$file")
  magick "$file" -resize 1400x1400 -gravity center \
    -background white -extent 1600x1600 \
    -quality 85 -strip "processed/$filename"
done

Wix Blog Image Optimization

Blog featured images appear in:

  • Blog feed/listing pages
  • Social media shares
  • RSS feeds
  • Related posts widgets

Specifications: 1200x630 (matches OG image requirements)

In-Post Image Best Practices

PlacementRecommended WidthAspect Ratio
Full-width1200pxAny
With text wrap600px4:3 or 3:2
Side-by-side600px eachSame ratio
Hero/cover1200x6301.91:1

Blog Image SEO Checklist

  1. Descriptive filename before upload
  2. Alt text on every image
  3. Relevant caption when appropriate
  4. Featured image set for social sharing
  5. Images match content topic for search relevance
  6. Compressed to under 200KB for inline images
  7. Proper aspect ratios for feed thumbnails

Summary

Quick Reference Table

Image TypeDimensionsFormatQualityFile Size Target
Hero/Banner1920x1080JPEG80-85%Under 500KB
Blog featured1200x630JPEG80%Under 250KB
Blog inline1000x750JPEG80%Under 200KB
Gallery1600x1200JPEG82%Under 300KB
Product1600x1600JPEG85%Under 300KB
Logo500x200PNG/SVG100%Under 50KB
Favicon192x192PNG100%Under 20KB
Social (OG)1200x630JPEG85%Under 200KB
Icon500x500PNG/SVG100%Under 30KB

Optimization Checklist

  1. Resize images to recommended dimensions before upload
  2. Use JPEG for photographs, PNG for transparency, SVG for icons/logos
  3. Export in sRGB color space
  4. Strip metadata before upload
  5. Set focal points on all hero and gallery images
  6. Add descriptive alt text to every informative image
  7. Name files descriptively before uploading
  8. Set image quality to 80% in Wix settings
  9. Limit galleries to 30-50 images per page
  10. Test mobile preview for all pages with images
  11. Check Wix Site Speed dashboard after publishing
  12. Run Lighthouse audits on key pages
  13. Use Wix image elements instead of background images for content
  14. Set social sharing (OG) images for all important pages
  15. Consider Sirv for 360 spins, deep zoom, or batch AI processing

Platform Constraints to Accept

Wix handles certain things automatically that you cannot override:

  • Compression algorithms and output quality pipeline
  • CDN caching rules and TTL values
  • WebP/AVIF conversion behavior
  • Lazy loading implementation details
  • Image URL structure and hashing

Work within the system: Focus on what you can control - upload quality, dimensions, focal points, alt text, and page structure. Let Wix handle the delivery optimization, and supplement with external tools like Sirv when you need capabilities beyond what Wix offers natively.

Related Resources

Format References

Ready to optimize your images?

Sirv automatically optimizes, resizes, and converts your images. Try it free.

Start Free Trial