Show the Divi Switch Preloader on All Pages

Written by Dan Mossop

The Divi Switch plugin by Divi Space comes with a range of useful Divi theme customizations. One is the ability to add a pre-loader effect to the homepage, which displays a spinning icon while your page loads.

If you'd like to modify Divi Switch's pre-loaders to work on all pages, you can do so by adding CSS to Divi as follows:

.load-dark:before,
.load-light:before {
    display: block;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-content: center;
    text-align: center;
    line-height: 100%;
    -webkit-animation: curtain 3.5s forwards;
    animation: curtain 3.5s forwards;
}
.load-dark:after,
.load-light:after {
    font-family: "etModules";
    font-size: 3.4em;
    content: "\e02d";
    position: fixed;
    text-align: center;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    top: 45%;
    -webkit-animation: wheel 3s forwards;
    animation: wheel 3s forwards;
}
.load-dark:before {
    background: #303030;
}
.load-dark:after {
    color: #f1f1f1;
}
.load-light:before {
    background: #f1f1f1;
}
.load-light:after {
    color: #303030;
}
Now when you use Divi Switch to switch on either the "Home Page Pre-Loader (Dark)", or "Home Page Pre-Loader (Light)", it'll be applied to all pages on your site.

We may earn a commission when you visit links on our website.

Smooth Page Transitions for Divi & Extra!

Bring a touch of elegance to your Divi or Extra website with the Divi Transitions plugin. Enjoy seamless fade, zoom, and wipe effects that work smoothly with back button and new tabs. Perfect for creating a refined user experience without slowing down your site.

Latest Posts

Add a Visible Shadow to Divi Gallery Lightbox Arrows

Give the lightbox navigation arrows in your Divi galleries a stylish pop and improve their visibility by adding a shadow beneath the arrows. This quick guide will show you how to make your navigation arrows stand out against the lightbox overlay.Add a Visible Shadow...

Adjust Lightbox Arrow Size in Divi Gallery

Customize the size of the navigation arrows that appear in your gallery lightbox so they’re easier to see and aligned with your site’s design. Whether you want larger, more accessible controls or a subtler look, setting a precise arrow size creates a more polished...

Change Lightbox Arrow Color in the Divi Gallery Module

Make the lightbox navigation arrows in your Divi Gallery match your brand and stand out against your images by assigning a custom color. This improves visual consistency, enhances accessibility with better contrast, and elevates the overall browsing experience for...

Change the Divi Gallery Module Grid Image Scaling

Divi’s Gallery module offers a great way to showcase images, but it can sometimes stretch or crop them in unwanted ways. This article explains how to manage the module’s image scaling behavior to ensure your images are displayed at the correct size and aspect...

Set Custom CSS IDs for Individual Divi Accordion Items

Assigning unique CSS IDs to specific Divi Accordion items allows for precise control over styling, targeting, and linking within your page content. This ability is particularly useful when you want to apply custom designs or create anchor links to particular accordion...

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

5 Comments

  1. works great, but I had to change the content tag to "\e02d" instead of "e02d" to show the correct icon.

    Reply
    • Hi Lukas, thanks for that. Yes there should have been a backslash, but it looks like it was getting stripped out. I've updated the post to correct this.

      Reply
  2. It works perfectly, thanks ! Do you know how to change the image of the spinner ? I try to change png in the folder of plugin, but it doesn't work…

    Reply
    • Hi Sylvain, have you tried clearing your browser cache. Your browser will store the image in its cache and avoid reloading it if possible. This means even if you change the image in the folder, you won't see the updated image until the copy in your browser cache expires. Clearing your cache will force it to reload the image and should hopefully make it start displaying the new spinner for you. Let me know if that doesn't help.

      Reply
  3. I'd been wondering how to do that, and your code worked so perfectly. Thanks for putting that up. :)

    Reply

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.