Forums

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

Home Forums CSS [Solved] White Space At Top of Browser Reply To: [Solved] White Space At Top of Browser

#196459
Paulie_D
Member

Off-hand it appears that your nav-menu is not hidden properly in the media query

@media (max-width: 767px)
.menu--clone {
  background: none;
  height: auto;
  left: 0;
  position: fixed;
  top: 0;
  transform: none;
  transition: all 300ms ease-in-out 0s;
  z-index: 1000;
  display: none; /* add this? */
}