vote up 1 vote down star

I know, a vaque title but it's hard to describe what I want in one sentence.

My problem is as follows, I have a template with several dropdown menus activated by jQuery. The dropdown lists appear as second level navigational items within a the first-level list, as follows:

<ul class="tools">
  <li class="dropdown">
    <a href="#">Tools</a>
    <ul class="submenu">
      <li><a href="/">Option 1</a></li>
      <li><a href="/">Option 2</a></li>
      <li><a href="/">Option 3</a></li>
    </ul>
  </li>
  <li><a href="/">More</a></li>
</ul>

The submenu is hidden by default, and can be shown by clicking the list item it belongs to (in this case 'tools'). The submenu is positioned absolute, so that when it shows it's always just below the clicked link. This all works perfectly fine.

The problem is that all this is wrapped in a div that has an overflow: hidden. When the submenu is too close to the right side of this div, and the list items are too long, the list falls under the right border of the wrapper, rendering it partly invisible. Overflow: auto gives the wrapper a scrollbar, which is unwanted. Overflow: visible solves the problem, but makes the wrapper have no height so that the background color and borders aren't visible, which is part of it's function, so that doesn't help either.

To not have to quote a large bunch of code, a live example can be seen on http://www.pkr.nl/template/forumdisplay.html

Does anyone know a solution that will make the menus either show outside the wrapper, or that makes them align to it's right in a decent way?

flag

2 Answers

vote up 1 vote down check

Is there a reason you are floating #container .column left?

If you remove the float and then remove the overflow:hidden from #container, your menu will show up.

link|flag
the float is because the page runs on a css framework that allows multiple columns, which do need a float. then again, I only need to float the center (currently the only) column left if another column is right to it. In that case, I can't see any dropdown that will be overlapping the right side, so I guess I could use this solution for the pages without a right-hand sidebar. Anyway, thanks for the quick and good answer. I'm just going to wait and see a few more comments but yours is probably best :) – timhessel Aug 21 at 11:37
ah never mind, this works perfectly! – timhessel Aug 21 at 11:43
vote up -1 vote down

You are going to have to abandon your attempt with overflow:hidden and try to find an alternate solution. The solution should not be too difficult if the list that appears is absolutely positioned, because absolutely positioned items tend to have a higher z-index.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.