hide mega menu arrows

Hi,

I want to hide the mega menu arrows on desktop.

https://vazluxe.com/

Hi,

To hide arrow on desktop you can add short code bellow to Admin → Online Store → Themes → Customize Code → assets/theme.css

@media screen and (min-width: 960px){
.header__links-list .header__links-icon {
  display: none;
}
}

Hi @Luxurymrkt
Please put this css in theme.liquid before body closing tag


Thanks!