Drop down menu gets cut off because of max-width of a parent

admin

Administrator
Staff member
I've integrated the <a href="http://wordpress.org/extend/plugins/jquery-mega-menu/" rel="nofollow">Mega Menu Plugin</a> into the Wordpress site I'm working on. The last menu item gets truncated, because the main container has
Code:
max-width
set. I want the last item to overflow while still keeping the same
Code:
max-width
. I've tried setting
Code:
overflow-x
and
Code:
z-index
on menu
Code:
ul
,
Code:
li
and main
Code:
div
container, but to no avail.
<br />

<b>EDIT</b>: the parent of the menu had
Code:
overlow: hidden
. Setting it to
Code:
overflow: inherit
fixed the problem.