Unsen theme second level menu problem

Hi @Abdallahsherif ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/t4s-submenu.css
  3. Add code below to end of file
.t4s-type__drop .t4s-menu-item.has--children:hover .t4s-sub-menu.t4s-sub-menu-2 {
  display: block;
}
.t4s-type__drop .t4s-menu-item.has--children .t4s-sub-menu.t4s-sub-menu-2 {
  position: absolute;
  left: -100%;
  top: 0;
  background-color: var(--t4s-body-background);
}
body .t4s-menu-item.t4s-type__drop > .t4s-sub-menu {
  overflow: visible;
  max-height: inherit;
}