I'm using Bootstrap for a section of my website. I mix accordion with a dropdown button. The problem comes when the button is on the bottom, the drop-down is hidden since the .accordion-body overflow is set to hidden.
You can view jsfiddle here: http://jsfiddle.net/DBQU7/6/
So I did what you would expect, tried to do overflow-y:visible. But then you can see the result here, it doesn't work:
(You can maybe also notice that the drop-down is inside the div, which creates a scroll bar inside the div instead of just showing up.
I saw this question that was similar: Twiiter Bootstrap (Button Dropdown) + Div Fixed
But it doesn't fix the problem as I mentioned above.
So the question is, how can I just make the dropdown show up normally.
Thanks.
The only solution I have found so far (and I would be happy to be proved wrong) was to add a CSS property that made the overflow visible when it was open and then through a JS script make it toggle between visible and hidden...not ideal, but nothing better so far.
-- Edited -- It actually doesn't work very well and doesn't seem to be a viable solution.
