Ability to close Dropdown Menu after link is clicked

Hey @catino

This should work for you, just paste it in the footer area of your site :smile: :

<script>
 $("a").click(function(){
    $("nav").removeClass("w--open");
});
 $("a").click(function(){
    $("div").removeClass("w--open");
});
</script>