This is my mobile version menu drawer. The SHOP and CUSTOMER is added menu title but the red circled ‘BRAND’ is an added menu section but I made it just seem like title, so it supposed to have an arrow to open sub-menu like ‘BY ITEM’ or ‘BY SEASON’ on screenshot. I put code below at the bottom of component-menu-drawer.css but it doesn’t work. Could you help me please?
@media (max-width: 989px){
.js .brand__navigation .submenu-open{
visibility: visible;
}
.js .brand__submenu{
position: static;
transform: none !important;
background-color: #f5f5f5;
}
.brand__close-button{
display: none;
}
}
Hello @loolakoola ,
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code
Go to Sections → component-menu-drawer.css → find the code for the added menu “BRAND” (it may looks similar to this):
- {{ section.settings.title }}
To add an arrow icon, you can use an HTML entity code for the right-pointing arrow (→). Replace the existing code with the following code:
- {{ section.settings.title }} →
Save and preview
You can add code to redirect customers to the BRAND page by using code like this
- {{ section.settings.title }} →
Hope this can help. Let us know if you need any further supports
Ali Reviews team.
the code to add second-menu is at below and I put it on header.liquid. So I got confused at following your answer. could you try it again please?