My code is here:
http://ivanabilic.mixture.io/nnb/
The top bar adjusts to a dropdown when under 940px, but the toggle does not work at that point. I initialise the topbar script in the footer, but I don't know how to fix this. I think it's a problem with my CSS, but not sure how.
Help? Thanks!
EDIT: This is the navbar code specifically:
<div class="nav-background">
<div class="row" id="top">
<div class="twelve columns">
<nav class="top-bar">
<ul>
<li class="name"><h1><a href="#"><img src="{{ "public/images/logo.png" | root_asset }}" alt="PlusDigital"></a></h1></li>
<li class="toggle-topbar"><a href="#"></a></li>
</ul>
<section>
<ul class="right">
<li class="active"><a class="home" href="#">
<img class="home-icon" src="{{ "public/images/home-icon.png" | root_asset }}" alt="Home"></a></li>
<li><a href="#">Web Solutions</a></li>
<li><a href="#">Plans & Pricing</a></li>
<li><a href="#">Agency Services</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</section>
</nav>
</div>
</div>
</div>
And this is the initialise of the Javascript:
<script src="/public/scripts/jquery.foundation.topbar.min.js"></script>
<script type="text/javascript">$(document).foundationTopBar();</script>