remove Shopify logo from password page

Topic summary

A user seeks to remove the Shopify logo from their password-protected page while keeping the password entry field, specifically on the Prestige theme.

Initial Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add CSS code to hide the password footer:
@media screen and only (max-width: 996px) {
  .password__footer {
    display: none;
  }
}

Issue Encountered:
The mobile-only solution created a large gap on desktop views.

Updated Solutions:

  1. Remove the media query wrapper to apply the CSS globally across all devices
  2. Alternative method for Prestige theme: Edit password.liquid (or main-password.liquid) at line 111, find and delete the line: {% render 'icon' with 'shopify-logo' %}

Both approaches successfully hide the Shopify branding from the password page.

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

Thank you for the informatin. Just clarification its only for the mobile right? Not in the Ipads and desktop.

Try 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: 699px) {
.password__footer {
    display: none;
}
}
  • i hope it help.
  • Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!