Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #58745

    I’m working a site called http://jerseygiantsofamerica.com. If you go to any of the pages without headers, the menu disappears after scrolling down. It is there when you land on the page, but if you scroll to the bottom and scroll back up, it is gone. I’m not sure what’s wrong.

    #58758
    Sakin
    Keymaster

    @jacquelyn_jefferies : It’s because you don’t have any elements in header. So, either wait for new version update or just add the following css in “Appearance => Theme Options => Custom CSS” box:

    #masthead { display: none; }
    @media screen and (max-width: 980px) {
        #masthead { display: block; }
    }
    #58848

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘menu disappearing when scrolling down’ is closed to new replies.