Sidebar Dropdown Menu Using HTML, CSS & JavaScript

Sidebar Dropdown Menu Using HTML, CSS & JavaScript

CSS Sidebar Dropdown Menu

Do you want to create a dropdown sidebar menu? If yes then this tutorial will help you.

In this article, you will learn how to create a sidebar dropdown menu using HTML CSS, and JavaScript. Earlier I shared tutorials on different types of sidebar menus.

However, there was no dropdown between them. This sidebar design includes a sub-menu. There are two types of sidebar with dropdowns. Some designs are completely fixed and some are in popup format. If you are thinking of creating a website then you can take the help of StoryWorks. This is the best company for website development.

CSS Sidebar Dropdown Menu

Most websites use the navigation menu bar. However, in the case of modern websites, the sidebar menu is being used more. A side navigation bar is perfected when a dropdown or sub-menu is added to it.

Dropdown Sidebar Menu will help to organize any information on the homepage according to the category.

I used HTML CSS and JavaScript to create this Sidebar Dropdown Menu. I have shared many designs before with HTML CSS only. Since a dropdown or submenu has been added here, some amount of JavaScript needs to be used. Live Preview 👇👇

See the Pen
Sidebar Dropdown Menu Using HTML, CSS
by Shantanu Jana (@shantanu-jana)
on CodePen.

Under normal circumstances this HTML sidebar menu with a submenu will not be seen, instead, a small button will be found on the web page.

If we click on that button, we will see the sidebar. There is a cancel button which when clicked will hide the drop-down menu.

Related Post:
1. Menu bar With Tooltip in CSS
2. Responsive Top Navigation Menu Bar
3. CSS Tab Bar with Animation
4. Sidebar Menu Using HTML, CSS
5. Vertical Navigation Menu Using HTML
4. Sidebar Menu Using HTML, CSS
4. Sidebar Menu Using HTML, CSS

HTML sidebar menu has a cancellation first then a profile image and heading. Then there are the many menu items. I have added submenus to the two menu items here.

How To Create a Dropdown Sidebar Menu

Here I will show you step by step how to add a dropdown or sub menu in a sidebar. If you need source code, you can follow the download button below.

Here I will first add all the information in HTML and then design by CSS. Lastly, the menu button and dropdown have to be activated by JQuery.

Step 1: 

Create a menu button for the sidebar

First, we need to create a menu button on that page that we can see under normal conditions. Click on this button to see the full sidebar.

<div class=”menu-btn”>
   <i class=”fas fa-bars”></i>
</div>

I designed the webpage using the following CSS.

*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: “Poppins”, sans-serif;
}
body{
 min-height: 100vh;
 background: white;
 color: white;
 background-size: cover;
 background-position: center;
}

Now the following CSSs have been used to design the menu button. Here I used the icon to create the button. I have used font-size: 35px to increase the size of this icon.

.menu-btn{
 position: absolute;
 color: rgb(0, 0, 0);
 font-size: 35px;
 margin: 25px;
 cursor: pointer;
}
menu button for the sidebar
Step 2: 

Basic structure of sidebar menu

Now you have to create more structure for the sidebar menu in which the information of the full sidebar dropdown menu can be seen.

Sidebar width: 250px, height: 100vh used. Left: -250px is used here, which means that under normal conditions this menu bar will move 25 pixels to the left. As a result, we do not see any part of the sidebar.

<div class=”side-bar”>
</div>
.side-bar{
 background: #1b1a1b;
 backdrop-filter: blur(15px);
 width: 250px;
 height: 100vh;
 position: fixed;
 top: 0;
 left: -250px;
 overflow-y: auto;
 transition: 0.6s ease;
 transition-property: left;
}
.side-bar::-webkit-scrollbar {
  width: 0px;
}

When you activate the sidebar, that is, when you click on the menu button, it will be left: 0. As a result, we will see the complete Dropdown Sidebar.

.side-bar.active{
 left: 0;
}
Basic structure of sidebar menu
Step 3: 

Header section of Dropdown Sidebar

Now we need to create a header section. This header section will have a cancel button, an image, and a heading.

<header>
  <div class=”close-btn”>
     <i class=”fas fa-times”></i>
  </div>
  <img src=”image.jpg” alt=””>
  <h1>Mystery Code</h1>
</header>
header{
  background: #33363a;
}
img{
  width: 100px;
  margin: 15px;
  border-radius: 50%;
  margin-left: 70px;
  border: 3px solid #b4b8b9;
}
h1{
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  padding-bottom: 13px;
  font-family: sans-serif;
  letter-spacing: 2px;
}
Header section of Dropdown Sidebar

I designed the cancel button using the CSS below. I have used font-size: 23px to increase the color and size of this button.

.close-btn{
 position: absolute;
 color: #fff;
 font-size: 23px;
 right:  0px;
 margin: 15px;
 cursor: pointer;
}
Sidebar Dropdown Menu Using HTML
Step 4: 

Sidebar Dropdown’s menu item

I have added all the menu items in HTML below. Here are 6 menu items and some dropdown menus. If you follow the HTML structure below, you will understand that a sub-menu has been added here. Then the menu items are designed by CSS.

<div class=”menu”>
  <div class=”item”><a href=”#”><i class=”fas fa-desktop”></i>Dashboard</a></div>
  <div class=”item”>
    <a class=”sub-btn”><i class=”fas fa-table”></i>Tables<i class=”fas fa-angle-right dropdown”></i></a>
    <div class=”sub-menu”>
       <a href=”#” class=”sub-item”>Sub Item 01</a>
       <a href=”#” class=”sub-item”>Sub Item 02</a>
       <a href=”#” class=”sub-item”>Sub Item 03</a>
    </div>
  </div>
  <div class=”item”><a href=”#”><i class=”fas fa-th”></i>Forms</a></div>
  <div class=”item”>
    <a class=”sub-btn”><i class=”fas fa-cogs”></i>Settings<i class=”fas fa-angle-right dropdown”></i></a>
    <div class=”sub-menu”>
       <a href=”#” class=”sub-item”>Sub Item 01</a>
       <a href=”#” class=”sub-item”>Sub Item 02</a>
    </div>
  </div>
  <div class=”item”><a href=”#”><i class=”fas fa-info-circle”></i>About</a></div>
</div>

1. Design the sidebar menu item

.side-bar .menu{
 width: 100%;
 margin-top: 30px;
}
.side-bar .menu .item{
 position: relative;
 cursor: pointer;
}
.side-bar .menu .item a{
 color: #fff;
 font-size: 16px;
 text-decoration: none;
 display: block;
 padding: 5px 30px;
 line-height: 60px;
}
Sidebar Dropdown's menu item

2. Add hover to the menu item

.side-bar .menu .item a:hover{
 background: #33363a;
 transition: 0.3s ease;
}
.side-bar .menu .item i{
 margin-right: 15px;
}

3. Design the Dropdown Menu

Above we have designed the menu item but not the submenu. You need to design the submenu using some CSS below.

.side-bar .menu .item a .dropdown{
 position: absolute;
 right: 0;
 margin: 20px;
 transition: 0.3s ease;
}
.side-bar .menu .item .sub-menu{
 background: #262627;
 display: none;
}
.side-bar .menu .item .sub-menu a{
 padding-left: 80px;
}
Sidebar Dropdown Menu Using HTML, CSS

4. Activate the arrow symbol

As you can see above, an arrow has been added to each of the menu items that contain submenus. This arrow will rotate 90 degrees when you activate the dropdown.

.rotate{
 transform: rotate(90deg);
}
Activate the arrow symbol
Step 5: 

Activate the Dropdown Sidebar Menu

This dropdown sidebar menu has been completely designed but now requires some amount of JavaScript usage. Some jQuery has been used here to activate the menu button, cancel button, and dropdown.

   $(document).ready(function(){
     //jquery for toggle sub menus
     $(‘.sub-btn’).click(function(){
       $(this).next(‘.sub-menu’).slideToggle();
       $(this).find(‘.dropdown’).toggleClass(‘rotate’);
     });
     //jquery for expand and collapse the sidebar
     $(‘.menu-btn’).click(function(){
       $(‘.side-bar’).addClass(‘active’);
       $(‘.menu-btn’).css(“visibility”, “hidden”);
     });
     //Active cancel button
     $(‘.close-btn’).click(function(){
       $(‘.side-bar’).removeClass(‘active’);
       $(‘.menu-btn’).css(“visibility”, “visible”);
     });
   });
Dropdown Sidebar Menu

Please comment on how you like this Sidebar Dropdown Menu. Earlier I shared tutorials on many types of CSS sidebar menus.

If you just want to create a sidebar with HTML CSS then you can see those tutorials. All the code for creating this responsive dropdown sidebar menu is in the button below.