Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How can I in theme dawn change this arrow to drop down menu
Do you just want to change the arrow to caret icon or want to create a dropdown?
Hi @Reloger ,
Try by adding below line of code CSS to add the drop down:
.js .menu-drawer__navigation .submenu-open {
visibility: visible !important;
}
.js .menu-drawer__submenu {
position: static !important;
visibility: visible !important;
transform: translate(0) !important;
}
body .menu-drawer__close-button {
display: none;
}
Also, to change the icon, add the SVG file
And find and replace the icon-arrow with the arrow which you would like to change for example my file name is down
Now, the changes will be visible to the front store
I hope this will help you!