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

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #196457
    chris101
    Participant

    Hi there,

    I’m new to the forum and new to CSS.

    My issue is that when i resize the window a white space appears at the top of the browser. I have spent hours trying to fix this with no success.

    Sorry about the type of site:
    http://phonechatroads.co.uk/

    If anyone could help or point me in the right direction that would be fantastic.

    I would post the css code in question if i knew which part it was.

    Many thanks,

    Chris

    #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? */
    }
    
    #196461
    chris101
    Participant

    Perfect, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.