Remove customer login icon from bottom in mobile version

Hi,

How can i remove login icon and currency icon from bottom?

I still want to have in in mye header but not in the bottom.

You can put this into Customize=> Theme Settings=> “Custom CSS” setting:

.menu-drawer__account {
  display: none;
}

It worked for the customer icon :waving_hand: :folded_hands:

Is it possible to remove the country currency icon from the bottom to?

This?

.menu-drawer__localization {
  display: none;
}

Language can stay actually, just remove country currency?

Norway usd$

Try this than:

.menu-drawer__localization > :first-child {
  display: none;
}

I got this results with those 2 different codes.

The other result.

If i could just remove login icon on the bottom then i would be satisfied.