General Guide: See Global LCP Guide for universal concepts and fixes.
What is LCP?
Largest Contentful Paint measures when the largest content element becomes visible. Google recommends LCP under 2.5 seconds. Yola is a hosted website builder (Sitebuilder) with a drag-and-drop editor, pre-designed templates, and optional e-commerce via Yola Online Store. Since you cannot access server configuration or modify the underlying platform code, LCP optimization focuses on content preparation, template selection, and widget management.
Yola-Specific LCP Causes
- Uncompressed uploaded images -- Yola's Sitebuilder has limited automatic image optimization; hero images serve at near-original sizes
- Sitebuilder framework overhead -- the drag-and-drop engine injects layout CSS/JS on every page
- Widget overhead -- Yola widgets (social feeds, maps, embedded forms) each add their own scripts and resources
- Template complexity -- some Yola templates include animations, sliders, and background effects that delay rendering
- Google Fonts loading -- template font selections add render-blocking CSS
Fixes
1. Optimize Images Before Upload
# Compress hero images before uploading to Yola
mogrify -strip -quality 80 -resize "1920>" hero.jpg
cwebp -q 80 hero.jpg -o hero.webp
# Content images: max 800px width
mogrify -strip -quality 80 -resize "800>" photo.jpg
# Targets: hero < 200KB, content < 80KB
In the Yola Sitebuilder:
- Use the smallest image size that fills the display area
- Prefer JPEG for photos, PNG only for logos/graphics with transparency
- Avoid reusing the same high-resolution image across different page elements at different display sizes
2. Choose a Simple Template
- Select templates with static hero sections (no sliders or animations)
- Prefer single-column layouts over multi-sidebar designs
- Avoid templates with parallax scrolling effects or video backgrounds
- Test several templates with PageSpeed Insights before committing
3. Remove Unused Widgets
In the Yola Sitebuilder, review all pages for unnecessary widgets:
- Remove social media feed widgets (these load external scripts and content)
- Replace embedded Google Maps with a text address + link to Google Maps
- Remove hit counters, weather widgets, and other decorative elements
- Use Yola's built-in contact form instead of embedded third-party forms
4. Simplify the Homepage
- Keep the header section to one image + headline + CTA button
- Move testimonials, partner logos, and team sections below the fold
- Limit the homepage to 3-4 sections total
- Replace background images with solid colors or gradients where the image is purely decorative
5. Minimize Font Selections
- Limit to 2 font families (heading + body)
- Choose common fonts that are likely already cached (Open Sans, Roboto, Lato)
- Use Regular and Bold weights only -- avoid loading Light, Medium, SemiBold, etc.
- System fonts (Arial, Georgia, Verdana) have zero loading cost
Measuring LCP on Yola
- PageSpeed Insights -- the primary measurement tool since you cannot access server logs
- Chrome DevTools Network tab -- identify the largest resource blocking content display
- Compare pages -- test your simplest page vs. most complex to quantify widget/content overhead
- Mobile testing -- Yola's mobile rendering may not optimize images for smaller screens
Analytics Script Impact
- Add GA/GTM via Yola's Site Settings > Analytics section or custom code injection (if available on your plan)
- Avoid stacking multiple analytics platforms
- Yola's built-in site statistics add minimal overhead compared to external scripts
- Place any custom tracking code at the bottom of the page (footer code injection)