Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Why isn't my navbar's collapse menu popping up?

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #234961
    cscodismith
    Participant

    I am currently using the Foundation framework to make the site responsive. The problem I am having is when the website is cropped down to show the collapsed menu-icon it doesn’t show the links upon clicking it. You can view the codepen project of it here or you can view the live website at http://www.heartfx.org/

    #234972
    Atelierbram
    Participant

    When you move the height value on nav.top-bar to a less specific selector, then it will be visible on clicking the menu-icon.

    html>body>div.header>nav.top-bar {
      /* height: 60px;  <- get rid of this one */ 
    }
    .top-bar {
      height: 60px;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.