Remove Account Icon Menu Drawer - (Refresh Theme)

Topic summary

A user wants to remove the account icon and ‘Log in’ text from the bottom of the mobile menu drawer on their Shopify store using the Refresh theme.

GemPages provided a CSS solution:

  • Target the element with CSS code to hide it using display: none !important
  • The code snippet appears to be formatted for the .drawer-account class within the #menu-drawer .menu selector

A follow-up question was raised asking where to place this CSS code, which remains unanswered. The discussion is ongoing with the implementation details not yet clarified.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

Hello,

I would like to remove the account icon and ‘Log in’ text located at the bottom of the menu drawer on mobile.

Is this possible at all?

Here is my store for reference:

www.mmmtrading.co.uk

Hello @mmmtrading

I would like to give you a solution to support you

You can try again with the following code:

#menu-drawer .menu-drawer__account{
  display: none !important;
}

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

@GemPages where do we put this code?