Hey I have a license for one domain. I need to change to another domain, and I can't deactivate.
T
Txelo
@Txelo
Posts
-
Activation in other domine -
Display Submenu in Mobile MenuHey friends, I have this code in Custom CSS:
/submenu/
nav.primary .sub-menu li{
display: block;
position: relative;}
.sub-menu{
padding-top: 10px!important;
opacity: 0;
transition: opacity 200ms ease;
-webkit-transition: opacity 200ms ease;
pointer-events: none;
position: absolute;
line-height: 40px;
background-color:rgba(255, 255, 250, 0.8);
}
nav.primary li:hover .sub-menu{
opacity: 1;
pointer-events: auto;
}
/**/But in mobile menu, there aren't submenus....
What can I do?Thanks