How to fix an arrow icon blocking a mobile menu item?

We are having trouble with our mobile menu. There is an arrow icon blocking one of the menu items and we can’t seem to fix the issue.

Any help?

https://shop.eluwastudio.com/collections/all

@JhordanMSUITE

Please add the following CSS code to your assets/theme.css bottom of the file.

@media (max-width: 749px){
.nav-hamburger .menu-item .dropdown-arrow, .nav-hamburger .submenu-item .dropdown-arrow {top: -14px !important;left: 45% !important;}
}

Thanks!

Hi @JhordanMSUITE

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> theme.css ->paste the below code at the bottom of the file.
@media (max-width: 1025px){
.nav-hamburger .menu-item .dropdown-arrow, .nav-hamburger .submenu-item .dropdown-arrow {
    left: auto !important;
    top: -13px !important;
    right: 10% !important;
}
}

The code didn’t work. I also tried to add the following code (see image below) and still nothing. So strange.

plz give this a try

@media (max-width: 1024px){
.nav-hamburger .menu-item .dropdown-arrow, .nav-hamburger .submenu-item .dropdown-arrow {
    left: auto !important;
    top: -13px !important;
    right: 10% !important;
}
}