[Solved] Drop Down menu not working any idea why? [closed]


You’re closing your <li>-s in the wrong place – DEMO

It should wrap the submenu <ul>

<li><a href="#">Testimonials</a>
    <ul>
        <li><a href="#">Client Reviews</a></li>
        <li><a href="#">Employee Reviews</a></li>
        <li><a href="#">Success Stories</a></li>
        <li><a href="#">Featured Employees</a></li>
    </ul>
</li>

1

solved Drop Down menu not working any idea why? [closed]