简体   繁体   中英

Responsive-nav won't work

I'm having a bit o dificulty making this work. This is my first website, I'm using Zurb and finding it good so far. I'm trying to implement a responsive nav, but it isn't working. The one I'm trying is this one: http://responsive-nav.com/#instructions . I made everything they ask to, but it still don't work. It's the same as not adding code at all to the website.

Some of the nav's code, if it helps:

<div class="row" id="row-top">
    <div class="large-4 small-8 columns logo">
        <img src="img/logo.png" alt="Laboratório Morales">
    </div> <!-- logo -->

    <div class="large-8 small-12 columns nav">
        <ul class="inline-list menu-principal">
            <li><a href="#">Laboratório</a></li>
            <li><a href="#">Exames</a></li>
            <li><a href="#">Convênios</a></li>
            <li><a href="#">Estrutura</a></li>
        </ul> <!-- menu-principal -->
    </div> <!-- menu-principal div -->
</div> <!-- row topo -->

Calling in the head, and bottom of body:

<link rel="stylesheet" href="css/responsive-nav.css">  <!-- responsive nav -->
<script src="js/responsive-nav.js"></script>          <!-- responsive nav -->


<script>
    var navigation = responsiveNav("#nav");
</script>  <!-- responsive nav -->    

Hm ... you are passing an id #nav . But you put nav in the class property. It should be

<div class="large-8 small-12 columns" id="nav">

Isn't it?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM