we need to use z-index on the PARENT element
this is the code that I have in the menu
<li class="dropdown open"> ...
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="http://localhost/index.php?route=account/register">Register</a></li>
<li><a href="http://localhost/index.php?route=account/login">Login</a></li>
</ul>
...
</li>
instead of using z-index on ul.dropdown-menu.dropdown-menu-right
I adde the z-index on the parent li
#top li.dropdown.open {z-index:10000 !important;}
If you need a better example just ask in the comments.
Comments
Post a Comment