Should I lazy load images below the fold?
Muhammed Tüfekyapan
Founder & CEO
TL;DR - Quick Answer
Complete Expert Analysis
Should I Lazy Load Images Below the Fold?
Lazy loading defers the download of below-fold images until the user scrolls near them. This reduces initial page weight by 40-70% for image-heavy pages, directly improving LCP and Time to Interactive scores.
Lazy Loading Impact
| Page Type | Initial Load Reduction | LCP Impact |
|---|---|---|
| Collection pages (grid of 24 products) | 50-70% reduction | High - many below-fold images |
| Product pages (multiple gallery images) | 30-50% reduction | Medium - hero image loads eagerly |
| Homepage (editorial layout) | 20-40% reduction | Medium |
| Blog posts with images | 40-60% reduction | High - long-form content |
Implementation
Native HTML lazy loading (recommended)
<img src="..." loading="lazy" alt="..."> - Supported in all modern browsers. No JavaScript required. Works automatically with Shopify's image render tags.
Critical: Don't lazy load hero/LCP images
The hero image and any image visible without scrolling should use loading="eager" or no loading attribute. Lazy loading these causes LCP to dramatically worsen.
Set explicit dimensions
Lazy-loaded images need explicit width and height attributes to prevent layout shift (CLS) as they load. Without dimensions, the page reflows when the image appears.
Shopify theme implementation
In Liquid: <img src="{{ image | img_url: '600x' }}" loading="lazy" width="600" height="600" alt="{{ image.alt }}">. Modern Shopify themes (Dawn) already implement this correctly.
When Lazy Loading Hurts
Lazy loading hurts if applied too aggressively to above-fold content, or if placeholder dimensions aren't set (causing CLS). Test your implementation with Chrome DevTools Lighthouse after adding lazy loading - the "Avoid lazy loading images that are in the initial viewport" check will flag any incorrectly lazy-loaded above-fold images.
Turn This Knowledge Into Real Revenue Growth
Growth Suite transforms your Shopify store with AI-powered conversion optimization. See results in minutes with intelligent behavior tracking and personalized offers.
+32% Conversion Rate
Average increase after 30 days
60-Second Setup
No coding or technical skills needed
14-Day Free Trial
No credit card required to start
With over a decade of experience in e-commerce optimization, Muhammed founded Growth Suite to help Shopify merchants maximize their conversion rates through intelligent behavior tracking and personalized offers. His expertise in growth strategies and conversion optimization has helped thousands of online stores increase their revenue.
Continue Learning
Discover more expert insights to accelerate your e-commerce growth
How do I write a Mother's Day cart abandonment recovery email?
A Shopify merchant wants to write effective cart abandonment recovery emails specifically tailored for Mother's Day g...
What is the best timing for a Mother's Day cart recovery email?
A Shopify merchant wants to optimize the timing of their Mother's Day cart abandonment recovery emails. They need to ...
Should I offer an extra discount in my Mother's Day recovery email?
A Shopify merchant is debating whether to include a discount code in their Mother's Day cart abandonment recovery ema...