hi,
i am trying to Design shopify store using unsen theme, but i have problem with second menu not apper !
i have 2 level menu and the problem with second
https://47a2bc-fc.myshopify.com/
password : tahlud
A user encountered an issue with the Unsen Shopify theme where the second-level dropdown menu was not appearing. They shared a screenshot showing the problem.
Solution provided:
Assets/t4s-submenu.cssFollow-up issue:
After implementing the fix, the user noticed the menu was displaying in RTL (right-to-left) format instead of LTR (left-to-right).
Additional fix:
Resolution: Both issues were successfully resolved. The user confirmed the solutions worked and expressed gratitude for the assistance.
hi,
i am trying to Design shopify store using unsen theme, but i have problem with second menu not apper !
i have 2 level menu and the problem with second
https://47a2bc-fc.myshopify.com/
password : tahlud
Hi @Abdallahsherif ,
May I suggest to update code these steps:
.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;
}
super it worked, thanks
Hi,
If you want to RTL you can add more code below
.t4s-type__drop .t4s-menu-item.has--children:hover .t4s-sub-menu.t4s-sub-menu-2 {
padding-right: 20px;
text-align: right;
}
Thank you once again from the bottom of my heart for everything you have done.
helpful man