Divi Tips #118

How to fix the toolbar of the Divi Text module?

Updated on 04/06/24

1283 words

5 minutes of reading
10 comments

This article contains affiliate links recognizable by the percentage icon (%) → I am an affiliate link

When you use the Text module Divi with several paragraphs, toolbar slides with your text. So if you need to change the text styles – add some fat, of Italian or a simple link – you need to highlight the text, go up to find the toolbar and go down. It's pretty annoying... In this article, I propose a quick tip that will allow you to fix this toolbar, so it will remain constantly accessible (at scroll), no matter the length of your text.

Front – non-fixed toolbar:

fixed tool bar gif 1

After – fixed toolbar:

gif 2 fixed toolbar

1 – What is the "toolbar" of the Text module?

Divi Text Style Toolbar

What I call the toolbar, it is the style editing menu available in each text box of each Divi module and in particular in the Text module.

This toolbar contains all the options needed to enrich your text:

  • add fat
  • put in italics
  • insert lists
  • insert links
  • stress
  • choose text alignment
  • add a title hierarchy
  • etc.

Finally, here we find the options proposed classic WordPress editorbefore The appearance of Gutenberg.

Did you know that? You can test Divi for free by visiting on this page and by clicking on "TRY IT FOR FREE"

2 - Why fix this toolbar? (+ video)

As you can see in the video, this action is simple to do, but it does not bring anything in terms of design for your site or your client's. Indeed, but fix this toolbar will bring you great comfort when creating your content with the Divi Visual Builder. Basically, you gain in efficiency and productivity!

If the video doesn't work, Here is the link.

Don't delay! Discover the theme Divi here !

3 – CSS Snippet for a "sticky to scroll" toolbar

When you need to modify an item of your site with CSS, your browser is your best ally. Just use the feature "inspect the element" in order to find an existing CSS Class and then modify it...

CSS class to change the toolbar

On this screenshot, I used the browser inspector to find the item to change. When it highlights, I click on and at the bottom of the browser, the corresponding HTML code is highlighted in blue. I find then 4 classes used including the class "mce-top-part".

Once identified, there is more than just to create the Snippet CSS appropriate for fix the toolbar. Here it is:

Customize the toolbar CSS
/* toolbar sticky au scroll */
.mce-top-part {
	position: sticky !important;
	top: -60px;
}

Copy and paste this code into the tab dedicated field Divi > Theme option > Customize CSS.

Note that this code will affect all Divi modules which use a text box, almost all the modules!

Reminder: there are other ways to add code in Divi. Discover also my library Snippets for Divi !

4 – Position ticky or position fixedd ?

To fix an item in a web page, the most effective property is the property "Location". But the question you may be asking yourself is: why use the value Sticky instead of value Fixed ?

The Sticky value allows the element to remain fixed within its container (of its parent element), while the Fixed value remains fixed relative to the browser window.

In this case, if you use the value Fixed for Sticky, you will see that the behavior of the toolbar is not at all in line with our expectations.

To understand better, scroll through the window below:

Need to master Divi? Discover my training that accompanies you step by step in the understanding and use of Divi! Learn more about Divi training.

5 - Compatibility with the back-office builder

This chapter was added after the initial publication of the article only a few hours ago. Indeed, some of you have pointed out that the CSS code I give in this article in Chapter 3 does not "work"...

I assure you, it works... but only if you use the Visual Builder front-office. For those who use the Divi Builder back-office, the code doesn't work... And I found out why!

So here are some details:

5.1 – If you use the old version of the Divi Builder

In my opinion it's a very bad idea... If on the tab Divi > Theme Options > Creator > Advanced, you have enabled "Classic Editor" option, you then use the old version of Divi that has stopped evolving since 2018...

Besides, if you use this version, there is a great chance that your back-office edition will row as never before, it's slow, it's slow!

In short, if you prefer to keep this configuration, here is what you need to do for fix the toolbar of the Divi Text module :

toolbar old builder
You have enabled the "Classic Editor" option and you are using an old version of Divi
  1. If on the tab Divi > Theme Options > Creator > Advanced, you have enabled the option "classic editor", you use the old version of Divi.
  2. The back-office sections and modules resemble the no.2 tablet of this screenshot.
  3. You even need to see a notification inviting you to use "the new Divi experience"... And for cause!
  4. It is still possible to set the toolbar of the Divi Text module.
  5. But in this case, the CSS will not suffice! You will need to add the following code to the functions.php file of your Divi child theme.
add_action('admin_head', 'toolbar_sticky');

function toolbar_sticky() {
  echo '<style>
	.mce-top-part {
    	position: sticky !important;
    	top: -30px;
	}
  </style>';
}

Note: the plugin Classic Editor can also reproduce this option of Divi that I advise you not.

5.2 - If you use the Divi Builder back-office

If you have enabled the option for keep the classic editor and that of the new experience of the Divi Builder but that you continue to edit your publications from back office (and not from the front-end as I show in my video), in this case you will also have to use a different code...

toolbar experience calssic
Fixed tool bar for back office use
  1. If on the tab Divi > Theme Options > Creator > Advanced, you have enabled the option « Latest Divi Builder Experience » and the option "Classical Editor", you can continue to build your layout from the back office.
  2. The back-office sections and modules resemble the no.2 tablet of this screenshot.
  3. It is still possible to fix the toolbar of the Divi Text module.
  4. But in this case, the CSS will not suffice! You will need to add the following code to the file functions.php of your child theme.
add_action('admin_head', 'toolbar_sticky');

function toolbar_sticky() {
  echo '<style>
	.mce-top-part {
    	position: sticky !important;
    	top: -60px;
	}
  </style>';
}

Note: The difference between the two codes for the back office is the value of the CSS property "Top". One is -30px and the other is -60px.

6 – Conclusion and additional resources

With this little trick, you will save redundant actions, increase productivity and efficiency when creating your next content! What do you say? Have you ever noticed that this toolbar disappeared at the scroll ?

Here are some other Divi resources that may interest you:

Attach toolbar to scroll
sticky text toolbar

Get Divi

Divi training

Ebook Divi PDF

Free tips

Divi Quiz

Live coaching

icon 256x256
Discover my wpLingua plugin that makes your WordPress websites multilingual ! SEO-Friendly / Automatic / Editable

10 Comments

  1. Daniel Prin
  2. Philippe Mouret
  3. Lycia Diaz
  4. Lycia Diaz
  5. Denis
  6. Denis
  7. Lycia Diaz
  8. Proudmary
  9. Samia
  10. Lycia Diaz

Submit a comment

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

This site uses Akismet to reduce undesirables. Learn more about how your feedback data is used.