It seems there is something in the JavaScript blocking clicks from top level nav links. I don't have a sub-menu under any of the links but I still can't click on them. Is there some sort of class or something I need to add to them to allow the normal click event on these links?
I am using the left-side header style, and here is my code for the header and menu:
<header id="header" class="no-sticky dark">
<div id="header-wrap">
<div class="container clearfix">
<div id="primary-menu-trigger"><i class="icon-reorder"></i></div>
<div id="logo" class="nobottomborder">
<a href="{!! route('index') !!}" class="standard-logo">
<img alt="Logo" src="{{ asset(config('arch.logo')) }}">
</a>
</div>
<nav id="primary-menu">
<ul>
<li><a href="{!! route('index') !!}"><div>Home</div></a></li>
<li><a href="{!! route('about') !!}"><div>About Our Firm</div></a></li>
<li><a href="{!! route('services') !!}"><div>Services</div></a></li>
<li><a href="#"><div>Portfolio</div></a></li>
<li><a href="#"><div>Current Projects</div></a></li>
</ul>
</nav>
</div>
</div>
</header>