I have been searching everywhere but haven't found a solution to this issue. My list menu has the following markup:
<div id="menu">
<ul>
<li>Category #1
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
</ul>
</li>
<li>Category #2
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
</ul>
</li>
<li>Category #3
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
</ul>
</li>
<li>Category #4
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
</ul>
</li>
</ul>
</div>
My goal is to make the menu entirely horizontal and have the items slide out when hovering over each category. Here's a visual example.
It's crucial that the structure remains in a list format, and as far as I can tell, none of the accordions I've come across support this specific feature. Any suggestions?