Remove customer login icon from bottom in mobile version

Topic summary

A user wants to remove the customer login icon and currency selector from the mobile menu drawer while keeping them in the header.

Solution provided:

  • CSS code successfully hides the login icon: .menu-drawer__account { display: none; }
  • Initial attempt to hide currency selector also removed the language option

Current status:
The user tried two different CSS approaches to selectively hide only the currency selector while keeping the language option, but both produced unsatisfactory results (shown in screenshots). The discussion remains open as the user still seeks a solution to remove just the login icon from the bottom menu, indicating they may accept a partial solution if the currency/language issue proves difficult to resolve individually.

Summarized with AI on October 24. AI used: claude-sonnet-4-5-20250929.

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.