• Hello,

    I have a moving white bar at the top of my screen. When i access my site, there is a tiny, half inch strip of white underneath the browser navigation. It moves with the screen and so always cuts off the very top of any page.

    I have no idea how to remove this! I’m using the Twenty Sixteen Theme. Any advice?

    Thanks,

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • In your css file, you can find the following codes:

    
    @media screen and (min-width: 44.375em)
    body:not(.custom-background-image):before, body:not(.custom-background-image):after {
        background: inherit;
        content: "";
        display: block;
        height: 21px;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 99;
    }
    

    Changing the value for height to 0px will help to achieve what you want.

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘White Bar Moving With Screen at Top’ is closed to new replies.