Re: remove Shopify logo from password page

remove Shopify logo from password page

rodolfoq
Excursionist
19 0 9

can someone help me remove the Shopify logo and still keep the lock where I can enter the password , Im using prestige theme. 

IMG_3606.jpeg

Replies 7 (7)

Made4uo-Ribe
Shopify Partner
9615 2290 2851

Hi @rodolfoq 

Would you mind to share your Store URL website? with password if its protected. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
rodolfoq
Excursionist
19 0 9
Made4uo-Ribe
Shopify Partner
9615 2290 2851

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!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
rodolfoq
Excursionist
19 0 9

and desktop 

 

Made4uo-Ribe
Shopify Partner
9615 2290 2851

Its same code, just dont include the media query. 

Like this. Same instruction.

.password__footer {
    display: none;
}
If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
rodolfoq
Excursionist
19 0 9

now it has a big gap

 IMG_3607.png

Pav33
Visitor
3 0 0

Solution for the Prestige theme or other paid themes:

  1. Go to your Theme -> Edit code.
  2. Find password.liquid and go to line 111, or search for:
    {%- render 'icon' with 'shopify-logo' -%}.
    Remove this line and save the changes.

If you don’t have password.liquid, search for main-password.liquid instead.