Search code examples
cssz-indexsuperfish

enable drop down menu in super fish theme


How do i enable drop down menu in this theme http://www.html5xcss3.com/2014/03/yourhome-html5-theme.html

<nav class="horizontal-nav full-width horizontalNav-notprocessed">
<ul class="sf-menu">
<li class="current"><a href="index.html">Home</a></li>
<li><a href="index-1.html">About Us</a></li>
<li><a href="index-1.html">Projects</a></li>
<li><a href="index-2.html">Gallery</a>
<ul>
<li><a href="index-1.html">Projects</a></li>
<li><a href="index-1.html">Projects</a></li>
</ul>
</li>
<li><a href="index-3.html">Enquiry</a></li>
<li><a href="index-4.html">Contact Us</a></li>
</ul>
</nav>

i get a drop down but it is hidden behind the banner.....

i have tried changing css z-index property but its not working......

someone help me on this


Solution

  • You can try this CSS.

    .menu_block {
      z-index: 9999;
    }