Get Divi Booster
The original and best Divi plugin
- Adds hundreds of new options to Divi
- Save time and avoid coding
- Get your site looking the way you want
Automatic updates. No recurring fees.
90 day refund guarantee.
All Divi Plugins by Divi Booster
In addition to the ever popular Divi Booster, we develop a wide range of plugins designed to help you get the most out of Divi.
Most Popular Divi Plugins
"I use multiple plugins by this developer, and would highly recommend them all." – Karrie
Divi Booster
Divi Booster adds all the features you need to build awesome sites in Divi.
Divi Modules
Improve your pages and layouts with these custom Divi modules
Divi Extensions
These powerful tools add special-purpose capabilities to your Divi site
Divi Compatibility Kits
Our "kits" make plugins you already use work better with Divi
WordPress Plugins
Our WordPress plugins can be used to enhance any WordPress theme
Divi Bundles
Save 40-60% with our hand-picked Divi Plugin Bundles
Latest Divi Theme Tips
Adding PHP code to the Divi Theme
Some of my fixes for the Divi theme require PHP code to be added to make the required change to the theme. This post briefly covers the various options and their various advantages.To add PHP code to the Divi Theme, you can: Use Divi PHP Code Module - to add PHP...
Hide the Divi Header Navigation Links
If you'd like to hide the navigation links (including the search icon) in the Divi Theme's standard header, here are several options.Hide the Divi Header Menu within Divi Settings It's possible to remove the menu links and search icon within Divi itself. To do so: 1....
Stop the Divi Header from Shrinking on Scroll
The Divi Theme header has a default scroll effect which sees it "shrink" to a more compact version as you scroll down the page. If you'd like to keep the header at full-size as you scroll down the page, you can do so using either of the two methods below.Stopping the...
Open Divi Slider Button Link in New Tab
To make Divi Theme's slider button links open in a new tab, you can add the following into the footer.php file (of the theme itself, or a child theme): <script> jQuery(function($){ $('.et_pb_more_button').attr('target', '_blank'); }); </script> This is...
Greyscale Google Maps in the Divi Map Module
The Divi Theme comes with a map module that makes it easy to embed Google Maps into your webpages. Here's a quick cross-browser CSS snippet for displaying the map in greyscale rather than the standard Google Map colors:
Changing the Divi Logo Height
The Divi theme lets you put your site logo in the header. As you scroll down, the header shrinks to take up less space, and the logo shrinks with it. Here's how to change the height of both the normal and shrunken state of the logo. How to Set the Divi Logo Height...
Add Dividing Line Between Divi Sidebar Widgets
To add a dividing line between the individual widgets in the Divi Theme's sidebar, we can add the following CSS: #sidebar .et_pb_widget { border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 20px; } #sidebar .et_pb_widget:last-of-type { border-bottom:0;...
Changing the Divi Post Title Style
To change the style of the post titles in the Divi Theme, you use CSS like the following: .single h1 { font-family: Courier; font-size: 30pt; color: green; border-bottom: 1px solid #ddd; } This example change the post title font to Courier, makes the font size bigger,...
Removing the Divi Header Bottom Border
Eliminating the bottom border bar from the Divi standard header creates a cleaner and more modern look on your website. This change can help your header blend seamlessly with the rest of the page, offering a sleeker appearance and improved visual consistency. In this...