(202) 750-1910
  • Facebook
  • X
  • Instagram
  • TikTok
  • Yelp
  • Google
  • Pinterest
  • WhatsApp
  • Threads
  • Facebook
  • X
  • Instagram
  • TikTok
  • Yelp
  • Google
  • Pinterest
  • WhatsApp
  • Threads
0 Items
Ask the Egghead, Inc.
  • Home
  • About
    • Reviews
    • Awards
    • Careers
    • Partners
    • Systems Status
  • Services
    • Website Design
    • Managed Hosting
    • Accessibility Compliance
    • Content Builder
    • Multi-Language Websites
    • SEO
    • Social Media
    • Premier Property Promotion
    • Reputation & Review Management Services
    • Low Code/No Code Solutions for MVP Development
    • Citation Builder
    • Pricing
    • Get A Quote
  • Portfolio
  • Website Audit
  • Blog
  • Invest Local
  • Contact
Select Page

How to Create a Dropdown Menu Button Using Divi’s Fullwidth Menu Module

A dropdown menu button can really come in handy when designing a website. Aside from the main menu, there are areas on a site that may require a dropdown menu of sub items. We see them being used for things like blog post categories, lists, and form inputs. But they can even be used for a main call to action.

In this tutorial, we’ll show you how to create a dropdown menu button using Divi’s fullwidth menu module. To do this, we will first create a menu in WordPress. Then we will use Divi’s fullwidth menu module to display that menu with custom styles using the Divi builder and a little custom CSS. The result is a dropdown menu button that is both practical and elegant.

Let’s get started.

Sneak Peek

Here is a quick look at the dropdown menu button we will build in this tutorial.

Desktop (Menu Drops Down on Hover)

divi dropdown menu button

Tablet and Phone (Menu Drops Down on Click)

divi dropdown menu button

Download the Layout for FREE

To lay your hands on the designs from this tutorial, you will first need to download it using the button below. To gain access to the download you will need to subscribe to our Divi Daily email list by using the form below. As a new subscriber, you will receive even more Divi goodness and a free Divi Layout pack every Monday! If you’re already on the list, simply enter your email address below and click download. You will not be “resubscribed” or receive extra emails.

Download the Files
Download For Free

Download For Free

Join the Divi Newlsetter and we will email you a copy of the ultimate Divi Landing Page Layout Pack, plus tons of other amazing and free Divi resources, tips and tricks. Follow along and you will be a Divi master in no time. If you are already subscribed simply type in your email address below and click download to access the layout pack.

You have successfully subscribed. Please check your email address to confirm your subscription and get access to free weekly Divi layout packs!

 

To import the layout to your page, simply extract the zip file and drag the json file into the Divi Builder. The custom CSS has been added to a code module in a separate section at the bottom of the layout.

Let’s get to the tutorial shall we?

What You Need to Get Started

To get started, if you haven’t yet, install and activate the Divi Theme installed (or the Divi Builder Plugin if not using the Divi Theme). We will be using the Divi builder on the front end to design the dropdown menu button.

That’s it!

Creating a Menu in WordPress

Before we start building the dropdown menu with the Divi Builder, we must first create a WordPress menu that we would like to use for the fullwidth menu module. To do this, go to the WordPress dashboard and navigate to Appearance > Menus. Then create a new menu by clicking the create a new menu link, entering a menu name, and clicking the “Create Menu” button.

divi dropdown menu button

For now you can create some custom links with “#” as a url placeholder along with the link text.

Structure the menu items so that the top tier menu item has the link text “Learn More” with three sub menu items under it.

divi dropdown menu button

After that make sure you save the menu.

How to Create a Dropdown Menu Button with Divi’s Fullwidth Menu Module

Once the menu is created, we can start designing the dropdown menu button with Divi. To get things kicked off, create a new page in WordPress and use the Divi Builder to edit the page on the front end (visual builder).

After that, you will have a blank canvas to start designing in Divi.

Creating the Mock Content

First, add a one column row to the default regular section.

Add Text Module

Then add a text module to the row with the following content:

<h1>Dropdown Menu Button</h1>
<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>

After that, update the design settings as follows:

Section Padding

Next, update the section setting with the following:

  • Padding: 0px bottom

divi dropdown menu button

Row Spacing and Border

After the section padding is updated, open the row settings and give the row some padding and a slight border.

  • Padding: 10vw top, 10vw bottom, 5vw left, 5vw right
  • Border Width: 1px

divi dropdown menu button

Creating the Dropdown Menu Button

In order to create the dropdown menu button, we will use a fullwidth menu module. This will allow us to add the menu we created earlier.

Adding the Fullwidth Menu

To create the fullwidth menu module, add a new fullwidth section under the current regular section.

divi dropdown menu button

Then add a fullwidth menu module to the row.

divi dropdown menu button

In the fullwidth menu settings popup (under content), use the dropdown to select the menu you want displayed. This should be the same menu we created earlier named “dropdown button menu”.

Then take out the default white background color for the menu.

divi dropdown menu button

Once you have the menu added to with the fullwidth menu module, save the settings. We are going to come back to this module in a bit to finish the design. But for now, we’ll add a background to the fullwidth section.

Update Fullwidth Section design

Open the fullwidth section settings and update the following:

  • Background Gradient Left Color: #0047d6
  • Background Gradient Right Color: #45b2ff

divi dropdown menu button

  • Max Width: 240px
  • Section Alignment: center

I’m setting the max width of the section to 240px because this will match the width of the default dropdown menu width in Divi. It is also a nice size for a button on desktop and mobile.

divi dropdown menu button

  • Rounded Corners: 5px

divi dropdown menu button

Under the advanced tab, add the following CSS Class, overflow, and Z Index.

  • CSS Class: dropdown-button
  • Horizontal Overflow: visible
  • Vertical Overflow: visible
  • Z Index: 14

The CSS Class is necessary so that we can target our external CSS to this section only later on. The overflow needs to be set to visible so that we can see the dropdown menu. And the Z Index will help keep the dropdown stay on top of any other content on the page.

divi dropdown menu button

Design the Fulwidth Menu

Now we are ready to design the fulwidth menu module. Open the fullwidth menu module settings and update the following:

  • Make Menu Links Fullwidth: YES
  • Dropdown Menu Text Color: #ffffff
  • Mobile Menu Text Color: #ffffff
  • Text Alignment: Center
  • Dropdown Menu Background Color: #45b2ff
  • Dropdown Menu Line Color: #ffffff
  • Mobile Menu Background Color: #45b2ff

divi dropdown menu button

  • Menu Font: Encode Sans Semi Condensed
  • Menu Font Weight: Semi Bold
  • Menu Text Color: #ffffff
  • Menu Text Size: 16px
  • Menu Letter Spacing: 2px
  • Dropdown Menu Animation: Expand

divi dropdown menu button

Positioning the Dropdown Button

In order to get the button to overlap the bottom border, we need to add a negative top margin exactly one half the height of the button.

  • Margin: -40.5px top

divi dropdown menu button

Almost There

Here is the result so far…

divi dropdown menu button

As you can see the hover space doesn’t occupy the entire button area yet and the drop down menu is still over to the right. To fix this we can add some custom CSS.

Adding Custom CSS

Before adding the custom CSS, make sure you have the CSS ID “dropdown-button” added to the fullwidth section (not the module).

Without the CSS ID, the CSS below won’t work.

To add the custom CSS, open the page settings and paste the following code into the Custom CSS input area.

.dropdown-button .et_pb_fullwidth_menu .fullwidth-menu-nav > ul {
  padding-top: 0px !important;
}

.dropdown-button .fullwidth-menu li > a {
  padding-bottom: 0px;
  line-height: 81px;
}

.dropdown-button .fullwidth-menu li li a {
  padding: 6px 0px;
  line-height: 1.6em;
}

.dropdown-button .et_mobile_menu li a:hover, .nav ul li a:hover, .dropdown-button .fullwidth-menu a:hover {
  opacity: 1;
}

.dropdown-button .et_pb_fullwidth_menu_fullwidth .et_pb_row {
  padding: 0 0 !important;
}

.dropdown-button .fullwidth-menu li {
  display: block;
}

.dropdown-button .fullwidth-menu .menu-item-has-children > a:first-child:after {  
  right: 20px;
}

divi dropdown menu button

Here is the final result

divi dropdown menu button

Customizing the Menu on Mobile

Right now the menu will resort to the mobile version with the clickable hamburger icon that toggles the mobile menu open and closed. Here is what it looks like.

divi dropdown menu button

To fix the menu so that it matches the desktop version, we need to add some custom CSS. Open page settings and add the following custom CSS right under the css that we added currently.

@media (max-width: 981px){
  .dropdown-button .et_pb_fullwidth_menu .et_pb_row {
    width: 100%;
    }
  .dropdown-button .mobile_menu_bar {
    height: 81px;
  }
  .dropdown-button .mobile_menu_bar:before {
    font-family: inherit !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #ffffff!important;
    letter-spacing: 2px !important;
    content: &amp;quot;Learn More&amp;quot;;
    line-height: 81px;
    top: 0px;
}
  .dropdown-button .mobile_menu_bar:after{
    position: absolute;
    line-height: 81px;
    font-family: ETmodules;
    font-size: 20px;
    font-weight: 800;
    content: &amp;quot;3&amp;quot;;
    padding-left: 20px;
    color: #ffffff;
}   
  .dropdown-button .et_first_mobile_item &amp;gt; a {
    display: none;
  }

}

The above CSS makes the clickable area span the fullwidth and height of the section/button. It also replaces the hamburger icon with some text and an arrow icon that matches the desktop version. This is done using the :before and :after pseudo-elements. This way we get to keep the default functionality of the mobile menu in place.

Right now, the text content for the mobile dropdown button reads “Learn More”. But we can change this by updating the following line of CSS under the :before pseudo-element for the mobile menu bar:

content: &amp;quot;Learn More&amp;quot;;

For example, if you wanted it to read “Menu”, you would change the line of CSS to the following:

content: &amp;quot;Menu&amp;quot;;

divi dropdown menu button

Final Result

Here is the final result.

Desktop (Menu Drops Down on Hover)

divi dropdown menu button

Tablet and Phone (Menu Drops Down on Click)

divi dropdown menu button

Additional Sub Items

And you can even add sub menu items as well! Just update the menu on the menu editor page and you are all set.

divi dropdown menu button

Final Thoughts

Creating a dropdown menu button using Divi’s fullwidth menu module involves a few key steps. First, we create the menu in WordPress that we want to pull into the module. Then we use the Divi builder to and and style the fullwidth menu module to our liking. Then we add some custom CSS to polish off the design both on desktop and mobile. The result is a beautiful (and useful) dropdown menu that is deployed on hover for desktop and on click for mobile. Hopefully, you will find this to be a useful addition to your design toolbox.

I look forward to hearing from you in the comments.

Cheers!

.inline-code{padding: 0px 4px; color: crimson; font-family: Monaco,consolas,bitstream vera sans mono,courier new,Courier,monospace!important}

The post How to Create a Dropdown Menu Button Using Divi’s Fullwidth Menu Module appeared first on Elegant Themes Blog.

Recent Posts

  • Busting the Biggest WordPress Myths

    Busting the Biggest WordPress Myths

  • You’re Not Too Small for a Great Website

    You’re Not Too Small for a Great Website

  • Top Web Design Trends to Watch in 2025

    Top Web Design Trends to Watch in 2025

  • Lock Down Your Site: WordPress Security Made Easy

    Lock Down Your Site: WordPress Security Made Easy

  • Is It Time to Redesign Your Website?

    Is It Time to Redesign Your Website?

  • Don’t Ignore These Website Pages

    Don’t Ignore These Website Pages

  • AI Tools in Web Design: Hype vs. Real Help

    AI Tools in Web Design: Hype vs. Real Help

  • How to Make Your Website Feel Brand New Again

    How to Make Your Website Feel Brand New Again

  • No Leads? Here’s Why (And How to Fix It)

    No Leads? Here’s Why (And How to Fix It)

  • 7 Website Mistakes That Hurt Your Business

    7 Website Mistakes That Hurt Your Business

Awards

  • Clutch Top Web Design Company Medical Websites 2024

    Clutch Top Web Design Company Medical Websites 2024

  • Clutch Top Web Design Company Government Websites 2024

    Clutch Top Web Design Company Government Websites 2024

  • UpCity National Excellence Winner 2024

    UpCity National Excellence Winner 2024

  • UpCity National Excellence Winner 2023

    UpCity National Excellence Winner 2023

  • UpCity National Excellence Winner 2022

    UpCity National Excellence Winner 2022

  • UpCity Local Excellence Washington DC 2021

    UpCity Local Excellence Washington DC 2021

  • UpCity Top Designer 2021

    UpCity Top Designer 2021

  • DesignRush Accredited Agency 2021

    DesignRush Accredited Agency 2021

  • Clutch Top Company Washington DC 2021

    Clutch Top Company Washington DC 2021

  • Digital.com Best SEO Firms Washington DC 2021

    Digital.com Best SEO Firms Washington DC 2021

Ask-the-Egghead-logo

Capability Statement

View/Download

Ask the Egghead

200 Massachusetts Ave NW
8th Floor Suite 133
Washington, DC 20001
(202) 750-1910

Ask the Egghead

399 Boylston Street
Suite 685
Boston, MA 02116
(617) 221-8300

Quick Links

  • Website Design
  • Social Media
  • SEO
  • Managed Hosting
  • Privacy Policy
  • Investors
  • Facebook
  • X
  • Instagram
Designed by The Egghead © 2015-2025 Ask the Egghead, Inc.