Last active
June 3, 2024 08:29
-
-
Save imuhammadshoaib/19ec63889bcf0bd0ac038cf86e850a50 to your computer and use it in GitHub Desktop.
Make parent link clickable in Bootstrap with Wordpress NavWalker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
*Add this CSS in your (style.css) file. | |
*/ | |
.dropdown:hover>.dropdown-menu { | |
display: block; | |
} |
Thank still works
thanks that works
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What helped the mobile implementation on my end was adding "border: 1px solid #eee;" to the toggle class (the "+"). This helps the user notice there are two-click points, one to toggle and the parent link.