Creating a Responsive Nav Menu using CSS, Bootstrap, and JS Tutorial

In this tutorial, you will learn how to Create a Responsive Navigation Menu using CSS, Bootstrap, and JavaScript. This tutorial aims to provide students, self-learners, or new programmers with a reference for creating a responsive interface for a website or web application. Here, I will be providing a simple source code that demonstrates the main objective of this tutorial. The sample source code zip file is also provided and is free to download.

Why need to create a responsive web design?

The process of responsive web design (RWD) entails making web pages that display properly on a range of devices and screen sizes. It may not be required for all kinds of web applications, but this kind of web design is useful and helpful for those sites that targeted users that are also using other devices such as mobile phones/smartphones, tablets, etc. This means that you can have a website that is accessible and simple to use, even on a small screen.

What is a Navigation Menu?

Websites normally have a horizontal or vertical bar that serves as the navigation menu. Visitors may navigate your website and find their way to any page they choose, whether it's your about us page or your online store, with the help of a navigation menu. This helps your visitors or end-users to easily navigate to another part of your website or web applications.

How to Create a Responsive Custom Navigation Menu?

To create a responsive navigation menu, you must identify your target device's resolution or at least the maximum/minimum width of the device so you can create your CSS design according to the resolution of the device.

Here are the following common widths of different devices:

  • Mobile or Smartphones - 320px - 480px
  • Tablets or Ipads - 418px - 768px
  • Laptops or Small Resolution Screens - 1025px - 1200px
  • Large Screens such as TV Screens - >= 1201px

After that, you use @media at-rule of CSS to create the design for each screen. For example, the ID of your Navigation Menu Element is "NavMenu". You can use the following script.

  1. /** for Mobiles **/
  2. @media (max-width: 480px){
  3.     #NavMenu{
  4.         /* ... */
  5.     }
  6. }
  7. /** for Tablets **/
  8. @media (max-width: 768px){
  9.     #NavMenu{
  10.         /* ... */
  11.     }
  12. }
  13. /** for Desktops or Laptops **/
  14. @media (min-width: 1025px){
  15.     #NavMenu{
  16.         /* ... */
  17.     }
  18. }

Using the sample CSS script, you can achieve the responsive design of your page element.

Example

Here's a simple web application source code that I created to demonstrate the creation of a Responsive Custom Navigation Menu for websites. The application contains horizontal navigation using the Bootstrap v5 Framework's navbar component and a custom toggling menu.

Interface

index.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <meta charset="UTF-8">
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>JS - Custom Main Menu</title>
  7.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
  8.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
  9.     <link rel="stylesheet" href="assets/css/styles.css">
  10.     <script src="https://code.jquery.com/jquery-3.6.1.js" integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
  11.     <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
  12. </head>
  13.     <main>
  14.         <nav class="navbar navbar-expand-lg navbar-dark bg-gradient fixed-top">
  15.             <div class="container">
  16.                 <div class="d-flex w-100 align-items-center f">
  17.                     <a class="navbar-brand" href="./">JS - Custom Main Menu</a>
  18.                     <button class="btn btn-default bg-transparent rounded-0 text-light" href="#" id="CustomMenuBtn">
  19.                         <i class="fa fa-bars"></i>
  20.                     </button>
  21.                     <div class="" id="navbarNav">
  22.                         <ul class="navbar-nav">
  23.                             <li class="nav-item">
  24.                             <a class="nav-link active" aria-current="page" href="#">Home</a>
  25.                             </li>
  26.                             <li class="nav-item">
  27.                             <a class="nav-link" href="#">Features</a>
  28.                             </li>
  29.                             <li class="nav-item">
  30.                             <a class="nav-link" href="#">Pricing</a>
  31.                             </li>
  32.                             <li class="nav-item">
  33.                             <a class="nav-link disabled">Disabled</a>
  34.                             </li>
  35.                         </ul>
  36.                     </div>
  37.                     <div>
  38.                         <div id="customNavigationMenu">
  39.                             <ul class="cnm-nav-list">
  40.                                 <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">PHP Projects</a></li>
  41.                                 <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">JavaScript Projects</a></li>
  42.                                 <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Python Projects</a></li>
  43.                                 <li class="cnm-nav-menu">
  44.                                     <a class="cnm-nav-link" href="#">Tutorials</a>
  45.                                     <ul class="cnm-sub-nav-list">
  46.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">PHP</a></li>
  47.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">JavaScript</a></li>
  48.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Python</a></li>
  49.                                     </ul>
  50.                                 </li>
  51.                                 <li class="cnm-nav-menu">
  52.                                     <a class="cnm-nav-link" href="#">Others</a>
  53.                                     <ul class="cnm-sub-nav-list">
  54.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Blogs</a></li>
  55.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Book</a></li>
  56.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Tools</a></li>
  57.                                     </ul>
  58.                                 </li>
  59.                                 <li class="cnm-nav-menu">
  60.                                     <a class="cnm-nav-link" href="#">Sample Nav 100</a>
  61.                                     <ul class="cnm-sub-nav-list">
  62.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 101</a></li>
  63.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 102</a></li>
  64.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 103</a></li>
  65.                                     </ul>
  66.                                 </li>
  67.                                
  68.                                 <li class="cnm-nav-menu">
  69.                                     <a class="cnm-nav-link" href="#">Sample Nav 200</a>
  70.                                     <ul class="cnm-sub-nav-list">
  71.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 201</a></li>
  72.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 202</a></li>
  73.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 203</a></li>
  74.                                     </ul>
  75.                                 </li>
  76.                                 <li class="cnm-nav-menu">
  77.                                     <a class="cnm-nav-link" href="#">Sample Nav 300</a>
  78.                                     <ul class="cnm-sub-nav-list">
  79.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 301</a></li>
  80.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 302</a></li>
  81.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 303</a></li>
  82.                                     </ul>
  83.                                 </li>
  84.                                 <li class="cnm-nav-menu">
  85.                                     <a class="cnm-nav-link" href="#">Sample Nav 400</a>
  86.                                     <ul class="cnm-sub-nav-list">
  87.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 401</a></li>
  88.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 402</a></li>
  89.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 403</a></li>
  90.                                     </ul>
  91.                                 </li>
  92.                                 <li class="cnm-nav-menu">
  93.                                     <a class="cnm-nav-link" href="#">Sample Nav 500</a>
  94.                                     <ul class="cnm-sub-nav-list">
  95.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 501</a></li>
  96.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 502</a></li>
  97.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 503</a></li>
  98.                                     </ul>
  99.                                 </li>
  100.                                 <li class="cnm-nav-menu">
  101.                                     <a class="cnm-nav-link" href="#">Sample Nav 600</a>
  102.                                     <ul class="cnm-sub-nav-list">
  103.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 601</a></li>
  104.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 602</a></li>
  105.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 603</a></li>
  106.                                     </ul>
  107.                                 </li>
  108.                                 <li class="cnm-nav-menu">
  109.                                     <a class="cnm-nav-link" href="#">Sample Nav 700</a>
  110.                                     <ul class="cnm-sub-nav-list">
  111.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 701</a></li>
  112.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 702</a></li>
  113.                                         <li class="cnm-nav-menu"><a class="cnm-nav-link" href="#">Sample Sub Nav 703</a></li>
  114.                                     </ul>
  115.                                 </li>
  116.                             </ul>
  117.                         </div>
  118.                     </div>
  119.                 </div>
  120.                 <a href="https://sourcecodester.com" class="text-light fw-bolder h6 text-decoration-none" target="_blank">SourceCodester</a>
  121.             </div>
  122.         </nav>
  123.         <div id="main-wrapper">
  124.             <div class="container-md px-5 my-3">
  125.                 <div class="col-lg-6 col-md-8 col-sm-10 col-xs-12 mx-auto">
  126.                     <h2 class="text-center"><b>Cutom Responsive Navigation Menu using CSS, Bootstrap, and JavaScript</b></h2>
  127.                 </div>
  128.             </div>
  129.         </div>
  130.         <footer class="shadow-top py-4 col-auto">
  131.             <div class="">
  132.                 <div class="text-center">
  133.                     All Rights Reserved &copy; <span id="dt-year"></span> | <span class="text-muted">JS - Custom Main Menu</span>
  134.                 </div>
  135.                 <div class="text-center">
  136.                     <a href="mailto:[email protected]" class="text-decoration-none text-body-secondary">[email protected]</a>
  137.                 </div>
  138.             </div>
  139.         </footer>
  140.     </main>
  141.     <script src="assets/js/custom-menu.js"></script>
  142.    
  143. </body>
  144. </html>

Stylesheet

styles.css

  1. html, body{
  2.     min-height:100%;
  3.     width:100%;
  4.     background-color: #FBF8F1;
  5.     }
  6.     .truncate-3{
  7.         display: -webkit-box;
  8.         -webkit-line-clamp:3;
  9.         -webkit-box-orient: vertical;
  10.         word-break: break-all;
  11.         overflow: hidden;
  12.         hyphens: auto;
  13.         width:100%;
  14.     }
  15.     body>main{
  16.         height: 100%;
  17.         width: 100%;
  18.         display: flex;
  19.         flex-direction: column;
  20.     }
  21.     body>main>nav, body>main>footer{
  22.         flex-shrink: 1;
  23.     }
  24.     div#main-wrapper{
  25.         flex-grow: 1;
  26.         overflow: auto;
  27.         position:relative;
  28.         min-height: 150vh;
  29.     }
  30.     main>nav{
  31.     background-color:   #0072b2 !important;
  32.     }
  33.    
  34.     main>footer {
  35.     background-color: #f3efe6;
  36.     }
  37.    
  38.    
  39.     /**
  40.     * Post Designs
  41.     */
  42.    
  43.     .user-img-container{
  44.     width: 40px;
  45.     height: 40px;
  46.     border-radius: 50% 50%;
  47.     }
  48.     .post-img-single-container:not(:empty){
  49.     width: 100%;
  50.     min-height: 35vh;
  51.     background-color: var(--bs-gray-200);
  52.     padding: 0 5px;
  53.     }
  54.    
  55.     /** Custom Responsive Menu */
  56.    
  57.     /* Remove scroll bar if Custom menu is shown*/
  58.     body:has(#customNavigationMenu.show){
  59.     overflow: hidden;
  60.     }
  61.     button#CustomMenuBtn{
  62.     transition: transform .3s ease-in-out;
  63.     }
  64.     button#CustomMenuBtn:active {
  65.     transform: rotate(90deg);
  66.     border-color: transparent;
  67.     }
  68.     #customNavigationMenu{
  69.     transition: all .3s ease-in-out;
  70.     }
  71.     #customNavigationMenu {
  72.     position: absolute;
  73.     width: 100%;
  74.     max-height: 85vh;
  75.     overflow: auto;
  76.     background-color: #000;
  77.     left: 0;
  78.     transform: translateY(20px);
  79.     z-index: 10;
  80.     /* display: none;
  81.     opacity: 0; */
  82.     height: 0px;
  83.     min-height: 0px;
  84.     }
  85.    
  86.     #customNavigationMenu.show{
  87.     height: auto;
  88.     min-height: 60vh;
  89.     animation: slideMenu 1s;
  90.    
  91.     }
  92.     #customNavigationMenu.hide{
  93.     animation: slideMenuReverse 1s;
  94.     height: 0px;
  95.     min-height: 0px;
  96.    
  97.     }
  98.     @keyframes slideMenu {
  99.     0%{
  100.         height: 0px;
  101.         min-height: 0px;
  102.     }
  103.     50%{
  104.         height: auto;
  105.         min-height: 30vh;
  106.     }
  107.     100%{
  108.         height: auto;
  109.         min-height: 60vh;
  110.     }
  111.     }
  112.     @keyframes slideMenuReverse {
  113.     100%{
  114.         height: 0px;
  115.         min-height: 0px;
  116.     }
  117.     50%{
  118.         height: auto;
  119.         min-height: 30vh;
  120.     }
  121.     0%{
  122.         height: auto;
  123.         min-height: 60vh;
  124.     }
  125.     }
  126.    
  127.     #customNavigationMenu ul.cnm-nav-list {
  128.     width: 900px;
  129.     margin: auto;
  130.     margin-top: 30px;
  131.     margin-bottom: 30px;
  132.     display: flex;
  133.     flex-wrap: wrap;
  134.     }
  135.     #customNavigationMenu ul.cnm-nav-list li.cnm-nav-menu {
  136.     width: 33.33%;
  137.     display: flex;
  138.     flex-direction: column;
  139.     justify-content: start;
  140.     min-height: 35px;
  141.     }
  142.     #customNavigationMenu ul.cnm-nav-list ul.cnm-sub-nav-list li.cnm-nav-menu {
  143.     width: 100%;
  144.     }
  145.     #customNavigationMenu ul.cnm-nav-list>li.cnm-nav-menu {
  146.     margin-bottom: 15px;
  147.     }
  148.     #customNavigationMenu ul.cnm-nav-list li.cnm-nav-menu a.cnm-nav-link {
  149.     color: #fff;
  150.     text-decoration: none;
  151.     font-weight: 500;
  152.     font-size: 1.1rem;
  153.     }
  154.     #customNavigationMenu ul.cnm-nav-list>li.cnm-nav-menu>a {
  155.     font-size: 1.3rem !important;
  156.     font-weight: 700;
  157.     padding: 5px;
  158.     }
  159.     #customNavigationMenu ul.cnm-nav-list li.cnm-nav-menu a.cnm-nav-link:hover {
  160.     text-decoration: underline;
  161.     }
  162.     /** Make Navigation Bar and Custom Navigation Bar Menu Responsive */
  163.     @media (max-width:1000px) {
  164.         #navbarNav li.nav-item:nth-child(2) ~ li{
  165.         display: none;
  166.         }
  167.     }
  168.     @media (max-width:990px) {
  169.     #customNavigationMenu ul.cnm-nav-list{
  170.         width: 100%;
  171.     }
  172.     #navbarNav li.nav-item:nth-child(1) ~ li{
  173.         display: none;
  174.     }
  175.     main>nav .w-100{
  176.         width: auto !important;
  177.     }
  178.     }
  179.     @media (max-width:900px) {
  180.     #customNavigationMenu{
  181.         width: 100%;
  182.     }
  183.     #customNavigationMenu ul.cnm-nav-list li.cnm-nav-menu{
  184.         width: 50%;
  185.     }
  186.     }
  187.    
  188.     @media (max-width:670px) {
  189.     #customNavigationMenu ul.cnm-nav-list {
  190.         margin-top: 5px;
  191.         margin-bottom: 5px;
  192.     }
  193.     #customNavigationMenu ul.cnm-nav-list li.cnm-nav-menu{
  194.         width: 100%;
  195.     }
  196.     #navbarNav li{
  197.         display: none;
  198.     }
  199.     main>nav .d-flex {
  200.         flex-direction: row-reverse;
  201.     }
  202.     }
  203.    
  204.      

JavaScript

custom-menu.js

  1. const toggleButton = document.getElementById('CustomMenuBtn')
  2. const customMenuContainer = document.getElementById('customNavigationMenu')
  3. const toggleIcon = `<i class="fa fa-bars"><i>`
  4. const toggleCloseIcon = `<i class="fa fa-times"><i>`
  5.  
  6. window.onload = function(){
  7.     toggleButton.classList.add('hide')
  8.     document.getElementById('main-wrapper').style.marginTop = document.querySelector('main>nav').clientHeight + 'px'
  9. }
  10. window.onresize = function(){
  11.     document.getElementById('main-wrapper').style.marginTop = document.querySelector('main>nav').clientHeight + 'px'
  12. }
  13.  
  14. // Open Custom Navigation Menu onClick
  15. toggleButton.addEventListener("click", function(e){
  16.     if(!customMenuContainer.classList.contains("show")){
  17.         if(customMenuContainer.classList.contains("hide"))
  18.         customMenuContainer.classList.remove("hide")
  19.         customMenuContainer.classList.add("show")
  20.         toggleButton.innerHTML = toggleCloseIcon
  21.     }else{
  22.         customMenuContainer.classList.remove("show")
  23.         toggleButton.innerHTML = toggleIcon
  24.     }
  25.    
  26. })

Snapshots

Here are the snapshots of the outcome of the application source code I provided above.

Desktop or Website View

Custom Responsive Navigation Menu

Tablets or Ipads View

Custom Responsive Navigation Menu

Mobile or Smartphones View

Custom Responsive Navigation Menu

DEMO VIDEO

I also provided the source code zip file of the sample application I created for this tutorial on this site and it is free to download. You download it by clicking the Download button located below this tutorial's content.

That's the end of this tutorial. I hope this Creating a Responsive Nav Menu using CSS, Bootstrap, and JS Tutorial will help you and will be useful for your current and future projects.

Explore more on this website for more Tutorials and Free Source Codes.

Happy Coding =)

Add new comment