Create account

Topic summary

A user seeks to add “forgot password” and “create account” links to their Shopify store, and reports that the account button is missing on mobile view.

Solutions provided:

  • Forgot password & create account links: Requires custom coding implementation, as these features aren’t available through standard theme settings.

  • Missing mobile account button: Two CSS-based solutions were offered:

    1. Navigate to Online Store → Themes → Actions → Edit code, locate base.css around line 423, and delete code containing @media screen and (max-width: 749px) { .small-hide { display: none !important; }}

    2. Add custom CSS to the header section:

    @media screen and (max-width: 749px) {
      header .header__icon--account {
        display: flex !important;
      }
    }
    

Both respondents included screenshots demonstrating the solutions and requested the thread be marked as solved if helpful.

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

Hello everyone

I want to add forget password and Create Account link, how do i do? and on my mobile vision there is no account button In the upper right corner, how do i show it thank you

Here is my web https://7dd6bf-4c.myshopify.com/

Hello @tabny

  1. I want to add forget password and Create Account link, how do i do?
    this require custom coding to add the forget password and create account link.

  2. on my mobile vision there is no account button In the upper right corner

Go to online store ---------> themes --------------> actions ------> edit code------->base.CSS------> 423
and delete this code

@media screen and (max-width: 749px) {
.small-hide {
display: none !important;
}
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

@tabny Hey, thanks for posting here.
please add this code in header section side area (custom CSS)

@media screen and (max-width: 749px) {
 header .header__icon--account {
    display: flex !important;
 }
}

I hope it will help you, so please mark it as solved. thanks

customizer: