Does anyone know how to remove the drop down arrows?

I already have a menu but I just don’t want the drop down arrows for it I just want categories @MandasaTech @PageFly-Kate

1 Like

@AbdulShakir

oh sorry for that issue can you please share store url

https://abdulshakir.myshopify.com/

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.scss and paste this at the bottom of the file:
@media (max-width:749px){
    #SiteNav {
        display: block !important;
    }
    #ToggleMobileMenu {
        display: none;
    }
}
1 Like

Thank you

1 Like