Hello there,
I have a question: How can I change the color of the arrow for the active menu item?

Thanks for your help in advance,
Regards,
Adrian
Issue: Change the arrow color for the active header menu item in a Shopify theme. An image was shared for context.
Solution: Edit Online Store → Theme → Edit code → base.css and add a CSS rule targeting the arrow SVG next to the active item: .header__active-menu-item + svg { color: #ff33fd; } (replace with desired color). This uses the adjacent sibling selector to style the SVG following the active menu link.
Outcome: The change worked as intended. The question is resolved; no further issues reported.
Hello there,
I have a question: How can I change the color of the arrow for the active menu item?

Thanks for your help in advance,
Regards,
Adrian
Hello @adkowaty ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your base.css file and paste the following code at the bottom:
.header__active-menu-item + svg {
color: #ff33fd;
}
Thanks
Hello Guleria,
Thanks for your help. Working fine now. ![]()
Regards,
Adrian