If the last menu item has a dropdown submenu, the sub items flow off the screen on the right. This fixes it,
/* -- START FIX header last submenu item off screen -- */
#top-menu>li:last-child ul {
right: -70px !important;
margin-right: 20px;
}
/* -- END FIX header last submenu item off screen -- */Code language: CSS (css)