[Limited Time Offer] Get 40% off ALL ACCESS MEMBERSHIP before it’s gone!👉
mark Hendriksen logo

How To Add The Text “Menu” Next To The Divi Hamburger Menu

by Mark Hendriksen | Apr 28, 2021 | Divi tutorials | 13 comments

HomeDivi tutorialsHow To Add The Text “Menu” Next To The Divi Hamburger Menu

Mark Hendriksen

I am the founder here at MarkHendriksen.com a blog website for Web design, WordPress, and popular page builders.

In this little tutorial, we are going to add the text “Menu” or any text you like next to the hamburger icon to make it more descriptive.

For the default menu

For the default menu you can use this snippet and place it in Divi > Theme Options > CSS .

/* ### menu text for default menu ### */
#et_mobile_nav_menu:before {
    content: 'MENU';
    font-size: 14px;
    position: absolute !important;
    bottom: 29px;
    right: 40px;
    color: #000000;
}

You can change the text Menu between the quotes in something else if you like.

For the menu in the Theme Builder

Use this snippet if you have build a custom menu in the Theme Builder. You can place the snippet in Divi > Theme Options > CSS.

/* ### menu text for menu with theme builder ### */
.et_mobile_nav_menu:before {
    content: 'MENU';
    font-size: 14px;
    position: absolute !important;
    top: 4px;
    right: 40px;
    color: #000000;
}

And that’s it for this tutorial.

You might also like…

13 Comments

  1. WEN

    Thank you so much!! I was looking for this! So happy to have found this page!

    Reply
    • Mark Hendriksen

      Hi Wen,

      You’re welcome

      Reply
  2. Debbie S

    Thank you so much for this! Is there any way to change the word on different pages? I want the page name to be on each page. 😊

    Reply
    • Debbie S

      I figured it out! Thanks again for the code 😊

      Reply
  3. botmans

    Tried this one but it shows https://prnt.sc/CuSdbQ31fDL8
    I’m using Slide In Menu in header, any idea how to fix this?

    Reply
    • Mark Hendriksen

      Try to clear the static CSS cache in Divi > Theme Options > Builder > Advanced

      Reply
      • botmans

        still not working

        Reply
  4. KC

    Great. And super nice presentation too. I appreciate not having to read your life history to get this snippet. One thing… It would be great if the word “menu” was also linked to trigger the menu. Possible?

    Reply
    • kc

      using the theme builder version, fyi

      Reply
    • Mark Hendriksen

      Hi Kc,

      That is a good question and I do not have a solution for that right now. But I will see if there is a possibility for this.

      In the coming weeks, I will be releasing some new menu tutorials so I will see if I can come up with a solution for this.

      Reply
      • KC

        Awesome. Thank you. I’ll also be thinking about how to solve this. Seems like it’s probably going to require some php or javascript

        Reply
  5. Don

    I am trying to use this for the Slide In Menu on the Desktop version. Do I need to modify the code to get it to work? I have tried it in 4.22.2 and haven’t had any luck (likely user error).

    Reply
  6. Luc

    Thank you dude !

    Reply

Submit a Comment

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