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? Reply To: Why isn't my navbar's collapse menu popping up?

#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;
}