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.
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:
.menu-drawer__account { display: none; }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.
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
![]()
Is it possible to remove the country currency icon from the bottom to?
Language can stay actually, just remove country currency?
Norway usd$
Try this than:
.menu-drawer__localization > :first-child {
display: none;
}
If i could just remove login icon on the bottom then i would be satisfied.