I'm using drop down menu with structure such as below, with combination of CSS and jQuery to hide/display the Sub Items.
<li class="dropdown"><a href="#"><span>Folder 0</span></a>
<ul>
<li><a href="#">Sub Item 1.1</a></li>
<li><a href="#">Sub Item 1.2</a></li>
<li><a href="#">Sub Item 1.3</a></li>
<li><a href="#">Sub Item 1.4</a></li>
<li><a href="#">Sub Item 1.2</a></li>
<li><a href="#">Sub Item 1.3</a></li>
<li><a href="#">Sub Item 1.4</a></li>
</ul>
</li>
My divs are placed like a table, this way:
MX
MX
MX
So, imagine there's two columns and three rows..
where each sections are div elements,
M->is the div where I put my the dropdown menu in,and
X->other divs
The problem that I'm having right now is that when the menu is clicked and submenus shows up, I can't select the submenu that overlaps the div in the bottom, it seem like it's below the div and I can't select it, 'mouse-over' it etc
Can someone help me with this isssue? So that I can have all my menus working perfectly
MXconcept a bit better? – Chris Kempen Jan 13 at 8:26