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.

southernhillclothing@gmail.com

pw:Southernhill23

1 Like