Html vertical menu dropdown list is getting hidden behind content which is just underneath the menu

Q: I purchased the unlimited licence version of html vertical menu.
I have just created the menu, but the dropdown list is getting hidden behind the image slider gallery which is just underneath the menu.
Can you please help?

A: Try to add "z-index;" and "position" parameters to DIV tags with your menu. For example:

<div style="position: relative; z-index: 200;">
<ul id="css3menu1" class="topmenu">
...
</ul>
</div>



Submenus should overlap other content correctly in this case.

Related