Divi 5 Performance logo

Divi 5 Performance

Community
cjsimon2
Divi 5 Performance

Use this skill when optimizing Divi 5 site performance, improving Core Web Vitals (LCP, INP, CLS), reducing render-blocking CSS, working with Divi's Critical CSS / Dynamic CSS / Inline Stylesheet system, configuring font loading (WOFF2, preload, font-display, variable fonts from 5.9), lazy-loading background images, preloading above-the-fold images, debugging slow Divi pages, or auditing cache-plugin interactions (WP Rocket RUCSS, LiteSpeed, Autoptimize, Perfmatters). Covers Divi 5's per-page component CSS, the 5.5 Aspect Ratio for CLS prevention, the 5.10 native below-the-fold lazy loading and deferred local videos, and the per-module helper class pattern for lazy-loading.

Overview

Publishercjsimon2
RepositoryDivi5-ToolKit
Skill nameDivi 5 Performance
Stars
61
Forks
3
Bundled files
3
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 3 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by cjsimon2 on GitHub. Read the source before you install it.

Installation

Install the Divi 5 Performance AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/cjsimon2/Divi5-ToolKit.git /tmp/Divi5-ToolKit
mkdir -p .claude/skills
cp -r /tmp/Divi5-ToolKit/plugins/divi5-toolkit/skills/divi5-performance .claude/skills/cjsimon2-divi-5-performance
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Divi 5 Performance in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Divi 5 Performance on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Divi 5 Performance is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Divi 5 Performance Optimization

Divi 5 Version: 5.11.0 (August 2026) Core Web Vitals targets: LCP < 2.5s, INP < 200ms, CLS < 0.1

Overview

Divi 5 was rebuilt for performance. The Dynamic Framework breaks the monolithic Divi stylesheet into hundreds of small per-module components and assembles a unique per-page stylesheet on demand — pages that use 5 modules only ship the CSS for those 5 modules. Combined with Critical CSS extraction (inlined above-the-fold styles) and Inline Stylesheets (eliminates an external CSS request), Divi 5 removes all render-blocking CSS by default.

What this skill covers: the configuration knobs, the CSS patterns that make Divi 5's pipeline work well, and the integration patterns with third-party performance plugins.

The Divi 5 Performance Pipeline

Three Theme Options work together. Enable in: Divi → Theme Options → Builder → Advanced → Performance.

OptionWhat it doesWhen to disable
Dynamic CSSPer-page stylesheet with only the CSS for modules used on that page. Replaces the monolithic style.css.Only if a plugin specifically requires the full stylesheet — almost never
Critical CSSAuto-extracts above-the-fold CSS, inlines it in <head>, defers the rest with <link rel="preload" ... onload>.If a cache plugin's own Critical CSS is running (avoid double-work)
Inline StylesheetsInlines the small per-page CSS file in <head> instead of loading via <link>. Removes one render-blocking request.If your stylesheet is unusually large (>50KB inlined hurts more than it helps)

Verification: View source on a frontend page. You should see no <link rel="stylesheet"> blocking the parser — only inline <style> tags and deferred preloads. Run Lighthouse and confirm "Eliminate render-blocking resources" is not flagged.

Native lazy loading (5.10+)

Divi 5.10 added engine-level deferral, reducing the need for custom lazy-load work:

  • Below-the-fold modules load only when scrolled into view, detected at row granularity within sections.
  • Local MP4/WebM background/module videos are deferred until they enter the viewport.
  • Dynamic Assets generation is memoized, so repeated filter callbacks don't re-run.

On 5.10+, verify the built-in deferral covers your case before adding the IntersectionObserver helper-class pattern below. Also note two cache-related fixes worth updating for: intermittent disappearing styles (fixed across 5.8/5.9) and LiteSpeed purging entire entry sets per edit (fixed in 5.8).

Core Web Vitals: What Hurts You in Divi 5

LCP (Largest Contentful Paint) — target < 2.5s

The LCP element is almost always a hero image, hero heading, or hero video poster. Top causes of slow LCP on Divi sites:

  1. Hero image not preloaded — Divi doesn't auto-preload above-the-fold images. Fix: add <link rel="preload" as="image" href="..."> for the hero image (Theme Builder header or a wp_head hook).
  2. Lazy-loaded hero imageloading="lazy" on the LCP image delays it past the LCP window. Fix: set loading="eager" and fetchpriority="high" on the hero image, or exclude it from lazy-load plugins.
  3. Render-blocking fonts — Web fonts blocking text paint. Fix: host locally, preload the heading font, set font-display: swap.
  4. Background image as LCP — Browsers don't preload CSS background images. If your hero uses a background-image, either preload it manually or move it to an <img> element.

INP (Interaction to Next Paint) — target < 200ms

Replaced FID in March 2024. Measures the slowest interaction on the page. Divi-specific causes:

  1. Heavy JavaScript on first interaction — Divi's jQuery, slider scripts, animation scripts. Fix: enable Divi's "Defer jQuery" option, defer non-critical Divi scripts.
  2. Long animation chains — Stagger animations on scroll/click can block the main thread. Fix: use CSS animations (compositor-only properties) instead of jQuery effects.
  3. Live filter/search modules — Heavy DOM manipulation. Fix: debounce, paginate results.

CLS (Cumulative Layout Shift) — target < 0.1

Divi 5.5 added Aspect Ratio settings on all image elements specifically to prevent CLS. Use them.

  1. Images without intrinsic dimensions — image renders, layout shifts when dimensions settle. Fix: set Aspect Ratio (5.5+) on all images, or set explicit width/height attributes.
  2. Web font swap shift — text shifts when web font loads. Fix: use size-adjust, ascent-override, descent-override on @font-face to match fallback metrics. Or use font-display: optional.
  3. Dynamic content injection — ads, related posts, comments. Fix: reserve space with min-height or aspect-ratio.
  4. Sticky modulesposition: sticky headers that pop in. Fix: apply sticky CSS server-side, not via JS.

Critical CSS Strategy

Divi 5's auto-Critical CSS works for most pages. When to override:

When to write your own Critical CSS

  • Above-the-fold uses heavy @font-face, clip-path, or custom keyframes that the auto-extractor misses
  • Theme Builder header has dynamic content the extractor can't analyze statically
  • You need cross-page critical CSS (header, nav, footer-skeleton)

How to add hand-crafted Critical CSS

Put it in Theme Options → Custom CSS (loads in <head> early enough to be critical). Keep it lean: ≤14KB compressed is the magic number (one TCP roundtrip).

css
/* Critical CSS — render the hero before any external CSS loads */
.et_pb_section_0,
.et_pb_section.hero-section {
  background: linear-gradient(180deg, #0a1929 0%, #1a3a5c 100%);
  padding: 6rem 0 4rem !important;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  color: #ffffff !important;
  margin: 0 0 1rem;
}

.hero-section .et_pb_button {
  background: #ff6b35 !important;
  border-color: #ff6b35 !important;
  padding: 1rem 2rem !important;
}

See ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/examples/critical-css.css for full template.

Font Loading Strategy

Default Divi behavior loads Google Fonts via external request. This costs LCP and CLS. Always host fonts locally for production.

Variable fonts (5.9+): Divi supports the current Google Fonts collection including variable fonts. One variable WOFF2 replaces several static weight files — fewer requests, smaller total transfer when you use 3+ weights of a family. The same local-hosting steps below apply; download the variable axis file and declare font-weight: 100 900; in the @font-face rule.

Steps

  1. Disable Google Fonts in Divi — Theme Options → General → Use Google Fonts → No
  2. Download only used weights from google-webfonts-helper or Google Fonts
  3. Convert to WOFF2 (smallest format, broad support)
  4. Define in CSS:
css
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;       /* show fallback immediately */
  src: url('/wp-content/fonts/inter-400.woff2') format('woff2');
  /* Metric overrides to reduce CLS on swap */
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
}
  1. Preload the heading font (the one in the LCP element):
html
<link rel="preload" href="/wp-content/fonts/inter-700.woff2" as="font" type="font/woff2" crossorigin>

Add via wp_head action or Theme Builder header HTML block.

See ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/examples/font-loading.css for full pattern.

Image Optimization

Lazy-load background images (Divi-specific)

Divi modules with background-image styles don't lazy-load by default — browsers can't see CSS background images until parse. Use a helper class to defer them:

css
/* In Theme Options → Custom CSS */
.et_pb_section.lazy-bg {
  background-image: none !important;
}

.et_pb_section.lazy-bg.is-visible {
  background-image: var(--bg-image) !important;
}
js
/* Add a tiny IntersectionObserver to flip the class */
const lazyBgEls = document.querySelectorAll('.lazy-bg');
const io = new IntersectionObserver((entries) => {
  entries.forEach((e) => {
    if (e.isIntersecting) {
      e.target.classList.add('is-visible');
      io.unobserve(e.target);
    }
  });
}, { rootMargin: '200px' });
lazyBgEls.forEach((el) => io.observe(el));

Or use Perfmatters (lazy-load CSS backgrounds setting) or WP Rocket's LazyLoad if you don't want custom JS.

Above-the-fold images: preload + eager

html
<!-- In Theme Builder header HTML or wp_head -->
<link rel="preload" as="image" href="/wp-content/uploads/hero.webp" fetchpriority="high">

In the Image Module's Advanced tab → Attributes, add fetchpriority="high" and loading="eager".

Aspect Ratio (Divi 5.5+) — eliminates CLS

For every image module, set Sizing → Aspect Ratio. The browser reserves space before the image loads, no shift on paint.

Use caseAspect Ratio
Hero banner21:9 or 16:9
Card thumbnail4:3 or 3:2
Product photo1:1
Portrait3:4 or 4:5

Cache Plugin Interactions

WP Rocket

SettingRecommendationNotes
File Optimization → Minify CSSOnCompatible
File Optimization → Remove Unused CSS (RUCSS)Off OR Safelist /et-cache/, .et_pb_*RUCSS removes Divi's Dynamic CSS, breaks site
File Optimization → Load CSS AsynchronouslyOff (Divi already handles this)Avoid double-work
Media → LazyLoad imagesOnExcludes already-eager images

LiteSpeed Cache

  • Enable Object Cache (Redis/Memcached)
  • ESI on Cart/Checkout for WooCommerce
  • CSS/JS Combine OFF for Divi 5 (per-page CSS already optimal)

Autoptimize

  • Generally avoid with Divi 5 — Divi's pipeline supersedes most Autoptimize features
  • If using: disable JS aggregation (Divi defers its own JS), disable CSS aggregation

Perfmatters

  • Most Divi-friendly performance plugin
  • Use for: lazy-load CSS backgrounds, script manager (disable WooCommerce JS on non-shop pages), preload links

Auditing Checklist

Before declaring a Divi site "fast":

  • Lighthouse Performance ≥ 90 on mobile (4G throttle)
  • LCP < 2.5s on hero page (test the heaviest landing page)
  • CLS < 0.1 across full page scroll
  • INP < 200ms on primary interaction (menu open, button click, form submit)
  • No render-blocking CSS in Coverage tab (Chrome DevTools)
  • No external Google Fonts requests in Network tab
  • Hero image is fetchpriority="high" and not lazy-loaded
  • All images have explicit width/height or Aspect Ratio
  • Total transferred page weight < 1.5MB (excluding video)
  • No JS errors in Console

Run the divi5-performance agent on a project for an automated walkthrough.

When Custom CSS Hurts Performance

PatternWhy it's slowFix
* selectors with expensive propertiesRepaints entire tree on layoutScope to specific elements
transform on transition: allTriggers all property transitionstransition: transform 0.3s only
box-shadow on hover via JSTriggers paintPre-define the shadow, only transition opacity of a pseudo-element
filter: blur() on large elementsGPU-heavyApply to small overlays, not full-section backgrounds
position: fixed with frequent layout updatesTriggers compositor layersUse will-change: transform and animate transform only
Web font as font-family fallback chain missLayout shift on swapSet size-adjust/ascent-override (see Font Loading section)

Common Misconfigurations

"Divi is slow because of jQuery"

Often blamed, rarely the cause in 5.x. Profile in DevTools Performance tab before blaming jQuery. Most "Divi is slow" issues are unoptimized images or external scripts (analytics, chat widgets, ad networks), not Divi itself.

"Critical CSS is breaking my site"

Divi's Critical CSS sometimes misses elements that render just below the fold on tablet. Symptoms: flash of unstyled content (FOUC) on a specific module. Fix: add that module's selectors to Theme Options → Custom CSS so they're loaded in the critical bucket.

"My PageSpeed score dropped after adding the Theme Builder header"

Theme Builder content is dynamically injected — Critical CSS may not include header styles. Add header CSS to Theme Options Custom CSS to make it critical.

Reference Files

  • ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/examples/critical-css.css — Hand-crafted critical CSS template
  • ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/examples/font-loading.css — Local @font-face with CLS-prevention overrides
  • ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/references/core-web-vitals.md — Full Core Web Vitals reference with Divi-specific causes and fixes

Resources

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Divi 5 Performance AI skill do?

Use this skill when optimizing Divi 5 site performance, improving Core Web Vitals (LCP, INP, CLS), reducing render-blocking CSS, working with Divi's Critical CSS / Dynamic CSS / Inline Stylesheet system, configuring font loading (WOFF2, preload, font-display, variable fonts from 5.9), lazy-loading background images, preloading above-the-fold images, debugging slow Divi pages, or auditing cache-plugin interactions (WP Rocket RUCSS, LiteSpeed, Autoptimize, Perfmatters). Covers Divi 5's per-page component CSS, the 5.5 Aspect Ratio for CLS prevention, the 5.10 native below-the-fold lazy loading...

Why use Divi 5 Performance on TypingMind?

Because you install it once and use it with any model. Divi 5 Performance is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Divi 5 Performance in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/cjsimon2/Divi5-ToolKit/tree/main/plugins/divi5-toolkit/skills/divi5-performance. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Divi 5 Performance?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Divi 5 Performance?

As many as you like. As long as a model supports skills, you can use Divi 5 Performance with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Divi 5 Performance AI skill free?

It is published on GitHub by cjsimon2. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇