Home Forums WoodMart support forum HTML block of Sub Menu are popup wrongly Reply To: HTML block of Sub Menu are popup wrongly

#552325

Luke Nielsen
Keymaster

Hello,

The problem is caused by the fact that full-width dropdowns are located inside the default dropdown. Use the code below to fix the issue:

.wd-nav-vertical .wd-dropdown.wd-opened .wd-dropdown {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-15px) translateY(0) translateZ(0);
}

.wd-nav-vertical .wd-design-default > div > ul > li:hover .wd-dropdown {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

Kind Regards