Hey. I have a menu bottom left of the page. I want the submenu to drop upwards (not downwards) while hoovering and the menu name still on the original place. Can anybody help me? I found some similar posts but using following css didn´t work out.
nav.primary .sub-menu li{
display: block;
position: relative;
}
.sub-menu{
padding-top: 0px!important;
bottom: 0px; !important;
opacity: 0;
transition: opacity 200ms ease;
-webkit-transition: opacity 200ms ease;
pointer-events: none;
position: absolute;
}
nav.primary li:hover .sub-menu{
bottom: 20px; !important;
opacity: 1;
pointer-events: auto;
}