├── mobile.png ├── desktop.png ├── css └── bootstrap-4-navbar.css ├── README.md ├── js └── bootstrap-4-navbar.js └── index.html /mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-4-multi-dropdown-navbar/master/mobile.png -------------------------------------------------------------------------------- /desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-4-multi-dropdown-navbar/master/desktop.png -------------------------------------------------------------------------------- /css/bootstrap-4-navbar.css: -------------------------------------------------------------------------------- 1 | /*//Copy this css*/ 2 | .navbar-light .navbar-nav .nav-link { 3 | color: rgb(64, 64, 64); 4 | } 5 | .btco-menu li > a { 6 | padding: 10px 15px; 7 | color: #000; 8 | 9 | } 10 | 11 | .btco-menu .active a:focus, 12 | .btco-menu li a:focus , 13 | .navbar > .show > a:focus{ 14 | background: transparent; 15 | outline: 0; 16 | } 17 | 18 | 19 | .dropdown-menu .show > .dropdown-toggle::after{ 20 | transform: rotate(-90deg); 21 | } 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bootstrap 4 Responsive Navbar with Multi level Dropdowns 2 | ========================== 3 | 4 | 5 | Tested on Bootstrap 4.0.0-alpha.6 and jQuery v3.1.1. Check this [Demo](https://bootstrapthemes.co/demo/resource/bootstrap-4-multi-dropdown-navbar/) 6 | 7 | 8 | ## In Desktop 9 |  10 | 11 | 12 | ## Mobile device 13 |  14 | 15 | 16 | ========================== 17 | 18 |
This example of bootstrap 4 navigation with multi dropdown menu.
105 |106 | Live Demo 107 | Download from Github 108 | hover version 109 |
110 |