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 .
This is the first result for this issue in Google, so I'm going to repost this here on behalf of the bootstrap community. According to the bootstrap team, this problem should be fixed in 3.0; below is the recommended interim solution:
In boostrap.js, alter the transition function:
, complete = function () {
if (startEvent.type == 'show') that.reset()
that.transitioning = 0
that.$element[method]('fully').trigger(completeEvent)
}
in boostrap.css, add this class:
.collapse.in.fully
{
overflow:visible;
}
I've tested this in IE8, 9, and 10, FF 11 & 12. Those are all the browsers allowed on our network, but if it functions in IE8 and FF11, chances are good it'll work everywhere. I had problems with the accepted solution in FF11.
source: twitter github issue #3601