I'm trying to make my navigation responsive

Viewed 30

Either the toggle or the links aren't working. Currently it's the toggle and I've tried everything.

  <div class="navbar">
   <nav> 
     <ul id="menulist"> 
        <li><a href="index.html">HOME</a></li>
        <li><a href="images teodora/Teodora todorova cv.pdf" download="Teodora_Todorova_CV"target="_blank" rel="noopener noreferrer">CV</a></li>
        <li><a href="paintings.html">PAINTINGS</a></li>
        <li><a href="digital.html">DIGITAL</a></li>
        <li><a href="webdesign.html">WEB DESIGN</a></li>
      </ul>
     </nav>
     <img src="images teodora/Vector.png" class="menu-icon" onclick="togglemenu()">
    </div>

The script for the dropdown toggle function

 <script>
     var menulist= document.getElementById("menulist");
     menulist.style.maxHeight="0px";
     function togglemenu()
     {
         if (menulist.style.maxHeight=="0px")
               {
                   menulist.style.maxHeight="130px";
               }
         else
               {
                   menulist.style.maxHeight="0px";
               }
     }
 </script>

<Cannot make it work, I really don't have enough knowledge, I would appreciate the help.

0 Answers
Related