What's Coming Up
Certified Knowledge Manager (CKM) for North America
Certified Knowledge Manager (CKM) for North America
/* === DROPDOWN CLIPPING FIX === */
/* Remove overflow restrictions on navigation */
.main-navbar,
.navbar-container,
.main-menu,
.w-nav-menu {
overflow: visible !important;
}
/* Dropdown positioning and visibility */
.w-dropdown {
overflow: visible !important;
position: relative;
}
.w-dropdown-list {
position: absolute !important;
z-index: 9999 !important;
overflow: visible !important;
min-width: 200px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
border-radius: 4px;
background: white;
border: 1px solid #e0e0e0;
top: calc(100% + 5px) !important;
}
/* Center-aligned dropdown positioning */
.dropdown-list.centered {
left: 50% !important;
transform: translateX(-50%) !important;
}
/* Ensure dropdown content is visible */
.dropdown-first-block,
.dropdown-second-block {
display: block;
padding: 10px 0;
}
.dropdown-item {
display: block;
padding: 8px 20px;
white-space: nowrap;
color: #333;
text-decoration: none;
}
.dropdown-item:hover {
background-color: #f5f5f5;
}
/* Fix for body overflow */
body {
overflow-x: hidden;
overflow-y: auto;
}
html {
overflow-x: hidden;
}
/* Ensure navigation stays on top */
#header {
z-index: 1000;
position: relative;
}
/* Mobile responsiveness */
@media screen and (max-width: 991px) {
.w-dropdown-list {
position: static !important;
transform: none !important;
box-shadow: none;
border: none;
background: transparent;
}
}