Z-index?

I’m having a herd time figuring out why the pop-ups in the vertical nav bar are being cut off,

it has to be a z-index problem with the absolutely positioned element but im lost

You’ll need to provide more information to get help with this. I think a link will be needed here.

If you apply overflow:hidden; to a container ALL of its descendants that fall outside the container’s area will be clipped. You could get rid of overflow: hidden ( it doesn’t look like you need to auto clear anything there anyway)

Yes, remove the overflow: hidden here:

#primary, #secondary {
  float: right;
  [COLOR="#FF0000"]overflow: hidden;[/COLOR]
  width: 220px;
}

thanks