How can I fix login text issues in mobile view menu bar?

Topic summary

A Shopify store owner encountered a display problem where login text appeared distorted or misaligned in the mobile view menu bar.

Solution Provided:

  • Access Shopify admin → Online Store → Themes → Actions → Edit code
  • Navigate to the Assets folder and open the CSS file (base.css, style.css, or theme.css)
  • Add custom CSS targeting the account/reward menu elements:
    • Set .menu__reward-account to 100% width with 15px gap
    • Apply height and styling adjustments for the link elements in mobile view (max-width: 749px)

Outcome:
The CSS fix successfully resolved the mobile menu text display issue. The solution was marked as helpful by the original poster.

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

When i switch to mobile view the text of login is messed up in the menu bar
Can anyone please help me how can i fix it ?
STORE URL : https://b58128-e6.myshopify.com/

Attaching the screenshot of the issue

1 Like

Hi @Yash234

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 749px){
.menu-drawer__account {
    width: 100%;
    gap: 15px;
}

a.menu-drawer__account.link.focus-inset.h5.medium-hide.large-up-hide svg {
    height: 30px;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

It worked thanks!

1 Like