Navbar Hover and Dropdown Menu
Posted: Sun Jan 16, 2022 1:37 pm
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:
Just to share and hope the above benefits some people. Enjoy!
Code: Select all
.dropdown-menu a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-menu {
display: block;
}
.dropdown:hover .nav-link {
background-color: #3e8e41;
}