I have problem with jQuery vertical dropdown menu; When I hover menu item, dropped menu is ‘cutting’ in bootstrap collapse. Could you help me with that? jQuery menu is taken from
http://www.dynamicdrive.com/dynamicindex1/ddsmoothmenu.htm#ajax

I have problem with jQuery vertical dropdown menu; When I hover menu item, dropped
Share
Most likely the problem is that the CSS property
overflow:hidden;has been set on either the container of your jQuery menu or one of that container’s parent containers.Without seeing the HTML you’re working on it’s impossible to say which but you’ll need to find which HTML element has the
overflowsetting set tohiddenand then set it tovisible. You may need to do that for more than one element depending on the structure of your HTML.Hope that helps.