How can I remove the down arrows in my header menu?

Hello! I have the Shopify Envy theme and wondered how to remove the drop down arrows next to my section headlines in the websites header?

@thelittlehousek

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme-index.min.css ->paste below code at the bottom of the file.
.nav .feather.feather-chevron-down, .nav .feather.feather-chevron-right {
    display: none;
}

Worked like a charm! Thank you.

@thelittlehousek

its my pleasure to help us

How do I remove them from the mobile view as well?

@thelittlehousek

yes, please add this code

.mobile-menu-link svg {display: none;}