Page 1 of 1

Navbar Hover and Dropdown Menu

Posted: Sun Jan 16, 2022 1:37 pm
by mecinta
Currently the navbar links whether in admin page or shop page must be clicked in order to dropdown and display the menu. Here is a CSS trick to dropdown the menu by simply hovering over the navbar link items:

Code: Select all

.dropdown-menu a:hover {
 background-color: #ddd;
}

.dropdown:hover .dropdown-menu {
 display: block;
}

.dropdown:hover .nav-link {
 background-color: #3e8e41;
}
Just to share and hope the above benefits some people. Enjoy!