Hi,
I have a very long sidebar menu & I would like to collapse those sub items & only expand when on click or on hover. How could I perform this action?
Thanks
Jack
Hi myproduct!
We can do it via CSS but it would only work on hover. Send us a link to your page and we’ll take a look.
Regards,
Elliott
Hi,
Here’s the link.
Hey!
Add this to your custom CSS.
.widget .sub-menu { dipslay: none; }
.widget li:hover .sub-menu { display: block; }
Cheers!
Elliott