My Dropdown Menu Is Clipped

LINK-
http://www.tds-exhibits.com/new/

If you roll over the “Products” or “Services” button in the navigation bar at the very top, a dropdown menu appears but it is clipping off the last few buttons from each drop down. Can someone take a look and let me know how to allow all of the dropdown menu to appear?

Thanks in advance!
Todd

Spot the culprit:

header {
width: 900px;
margin: 0 auto;
position: relative;
[COLOR="#FF0000"]overflow: hidden;[/COLOR]
min-height: 130px;
}

So just remove the overflow: hidden;?

Yep. It doesn’t seem to be needed. But if some kind of containment is needed down the track, then just use the “clearfix” method, such as

footer:after {
            content:"";
            display:table;
            clear:both;
}

Thank you so much ralph.m!

You’re welcome. :slight_smile: