Search code examples
menubar

Menu become fix header on scroll but under header images


My Menu from my site become fixed header scroll, but he scrolled under the pictures in the header menu. How to make the menu to get over these pictures?


Solution

  • You can use the css z-index property on your #menu element.

    #menu {
      z-index:10;
    }