Hello, on mobile when you open drop down menu to access categories you need to press + , is it possible to change to arrows?
https://linosmada-2350.myshopify.com/ password: yultia
Hi @Avgustinas
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid
.mobile-nav__toggle-btn .icon.icon-minus:before,
.mobile-nav__toggle-btn .icon.icon-plus:before {
content: '';
width: 12px;
height: 12px;
border: 1px solid;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
display: block !important;
border-width: 1px 1px 0 0;
transform: rotate(135deg);
}
.mobile-nav__toggle-btn .icon.icon-minus:before {
transform: rotate(-45deg);
}
Thank you very much!