Create an Elementor.com Like Mega Menu

Create an Elementor.com Like Mega Menu

Element.How also offers premium tutorials! Check them here:

Table of Contents

In this tutorial, I'm going to show you how to replicate a mega menu that is similar to the one found on Elementor.com.

Elementor.com themselves used and improved upon (design wise!) my tutorial about creating a mega menu for Elementor without any plugin.

Here is what we will be creating. You will also find the template file in your download zip bundle that came with the course.

Features:

  • CSS only, no plugins needed
  • Elementor.com-like mega menu design
  • Customizable
  • Desktop only

Let's get started!

First, let's get the proper structure in place

Let's add a container, and in it, let's add our logo, 4 headings and a button.

Create an Elementor.com Like Mega Menu 1

The container should have these settings: width should be set to full width, direction to Row, align items to Stretch and gap to 0.

Create an Elementor.com Like Mega Menu 2

The headings that should have a sub menu need the classes navItem and  navItem_SubIndicator.

Create an Elementor.com Like Mega Menu 3

The headings that don't need a sub menu only need the class navItem.

Each heading should also have a link. If you don't want or need one, add #.

The button will need the following custom CSS to take full advantage of the flexbox container, and push the nav items to the left:

<script> 
/* Please login to get the code 
 * The code will be for the Create an Elementor.com Like Mega Menu tutorial 
 * Found at this URL https://element.how/create-an-elementor-com-like-mega-menu/ 
 */ 
</script>

Create an Elementor.com Like Mega Menu 4

The sub menu indicators

Create an Elementor.com Like Mega Menu 5

We will be adding a small down triangle to indicate that there is a sub menu for certain nav items, those with the class name navItem_SubIndicator.

We will be using CSS pseudo elements for this, along with position:absolute; and the border trick to create triangles with CSS only.

All the CSS provided in this tutorial can be added wherever you prefer, really. Personally I like to add it all here under Settings > Advanced > Custom CSS, so that I can have a live preview of the modifications.

Create an Elementor.com Like Mega Menu 6Create an Elementor.com Like Mega Menu 7

In the template file, you will find the CSS in HTML elements, so that it works even with Elementor Free. Move it to where you want!

Let's add the following CSS to our project to get our triangles in place.

<script> 
/* Please login to get the code 
 * The code will be for the Create an Elementor.com Like Mega Menu tutorial 
 * Found at this URL https://element.how/create-an-elementor-com-like-mega-menu/ 
 */ 
</script>

This works to create a triangle essentially because the element itself has a base width and height of 0px. This results into the four border sides automatically creating triangles that all meet in the middle.

For instance, the following CSS:

::after {
content: '';
position: absolute;
border: 37px solid #000000;
border-right-color: green;
border-left-color: yellow;
border-bottom-color: purple;
}

Results in:

Create an Elementor.com Like Mega Menu 8

Now all we have left to do is make all but the top border transparent, and we have a downward facing triangle with CSS only!

Back to our triangle CSS.

The line top: calc(50% - 4px); allows us to position the pseudo-element carefully, starting from the exact center of the first ancestor element that has position:relative; (more info about this in the CSS positioning chapter).

You can adjust the values of the top property, as well as the right property, to position the triangle as you wish.

You can also play with the PX and color value in the declaration border: 7px solid #000000;.

Let's prepare the sub nav containers

Get the full CSS course now to unlock this chapter, and 50+ others.

 

Access tutorial

$99/one time Purchase access

Includes

  • Gain Access to This TutorialUnlock complete access to the current tutorial:
  • Future UpdatesYou will get access to all future updates to this tutorial.
  • Enjoy Unlimited UsageUse on as many of your own sites or your clients sites as you wish.

    Note that reselling or redistributing is not permitted.

Access everything

$299/one time Purchase All Access

Includes

  • Unlock every premium tutorial on Element.howGet access to the entire library of premium tutorials on Element.how
    Preview premium tutorials
  • Get access to the CSS course for Elementor usersAccess the complete 14 HTML chapters, 30 CSS chapters and 7 Elementor Projects.Learn more
  • Simple CSS Grid For ElementorAn Elementor Addon to Create Awesome Grid Layouts in a Single Click for Containers, Galleries and Loop Grid. Learn more
  • free extra: ShapeDividers.com Premium AccessLifetime Premium Access to ShapeDividers.comVisit ShapeDividers.com
  • 30 day money backNo questions asked money back. Not what you expected? Get a refund.
  • One-time payment of only $299No hidden fees or subscriptions.

    Sales taxes added where applicable.
  • Great supportGet help when you need it. Support includes getting things working as intended.

    Support excludes customization work.
  • Lifetime access to everything Element.howThe price reflects what is currently available on Element.how. All future updates are included, but none are promised. You pay for what is available now, and the rest is a sweet extra.

    I will say that it is definitely my intention to keep adding tutorials to Element.how.
* All prices are USD. Applicable taxes will be charged at checkout. Have a question? See the FAQ or email me.

Element.how also provides premium tutorials showing awesome advanced designs, check them out here.

Looking for something else? Search across 2737 Elements right here:

Checkout the Elementor Addon Finder directly

Leave a Reply