Hello guys,
I would like to make the categories section drop down when someone click. It currently only works when you click the plus next to it. But i want to be menu drop down also when you click categories, not just the plus next to it. Can anyone help me with this?
Hey @afcdigital ,
I see what you’re trying to do! To make the “Categories” section also trigger the dropdown when clicked (not just the plus icon), you’ll need to modify the event listener so that both elements toggle the submenu.
If you’re using JavaScript, something like this should work:
document.querySelectorAll('.menu-item').forEach(item => {
item.addEventListener('click', function() {
this.classList.toggle('open');
});
});
Make sure that your .menu-item class includes both the text and the plus icon so that either one can trigger the dropdown.
If you’d like us to implement this for you, just email us the collab code, and we’d love to do it for free! 
Let us know how it goes!
Shubham | Untechnickle