Hi ,
I would like some arrows/icon caret on my mobile menu.
How can I please code that?
website: 1989streetwear.com
pw: bet1989
Hi ,
I would like some arrows/icon caret on my mobile menu.
How can I please code that?
website: 1989streetwear.com
pw: bet1989
Hi @1989streetwear ,
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/component-menu-drawer.css->paste below code at the bottom of the file:
@media screen and (max-width: 990px) {
.icon-arrow, .header__inline-menu .icon.icon-caret {
display: block !important;
}
}
I hope it would help you
Best regards,
Richard | PageFly
Hi @PageFly-Richard , thank you for your code.
How do I change the arrow icon to caret-right?
Hi @1989streetwear ,
You can post the icon you want here, so I can help you with the css
Best regards,
Richard | PageFly
THANK YOU @PageFly-Richard
You can try below code:
@media screen and (max-width: 990px) {
summary.menu-drawer__menu-item:after {
content: "";
position: absolute;
right: 20px;
top: 12px;
background: url("https://cdn.shopify.com/s/files/1/0548/9550/9539/files/icon.png?v=1678511287") no-repeat;
width: 20px;
height: 20px;
background-size: 20px;
filter: invert(1);
}
}
I hope it would help you
Best regards,
Richard | PageFly
Thank you so much man!!