Your div.header-holder
has a style of overflow: hidden
. If you modify this, the organizers list should display correctly without any issues.
Updated based on the OP's comment:
Currently, the images are covering up the organizers list and they do not have overflow:hidden
applied...
You may want to consider adding position:absolute;
to the drop-down ul
(and position: relative
to its parent li
) in order to address this issue. By removing it from the normal document flow, it will sit on top of other non-absolute
elements.
However, since the images are part of a carousel/slideshow and also positioned absolute
, they may not naturally appear above them. In such cases, specifying a z-index
for the slideshow images and ensuring that the drop-down's z-index
is higher than that of the images can be helpful.