Remove Logo On Password Page Dawn Theme

I want to remove my logo in my header only on my password page. I have dawn theme 15.1.0. Can someone help please, thanks!

Hi @takeoverapparel

PLeas,share your store URL. Thanks!

Hi takeoverapparel, Can you share your store link so I can check and give you CSS code?

I changed my mind I want to keep logo but i do want to move down the Enter using password down. Also how do I get rid of the white space below the image/i want image to be full screen for password page. Here is link to site https://takeoverapparel.com/password

I changed my mind I want to keep logo but i do want to move down the Enter using password down. Also how do I get rid of the white space below the image/i want image to be full screen for password page. Here is link to site https://takeoverapparel.com/password

I changed my mind I want to keep the logo but I do want to move down the Enter using password. Also, how do I get rid of the white space below the image/i want the image to be full-screen for the password page. Here is the link to site https://takeoverapparel.com/password

Thanks for the info, check this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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){
.password-header {
    height: 50vh;
}

div#Banner-template--18097661477016__image_banner_47wNdV {
    height: 100vh;
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

thank you that worked how would i move the enter password down more and is there a way I can remove the lock icon?

To rmeove the padlock.

Add this code, same instruction.

svg.icon.icon-padlock {
    display: none;
}

And Save.

Result:

To move down more, you like to go more down?

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

Hello @takeoverapparel
1_ get rid of the white space below the image/i want image to be full screen for password page.
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.

.section-template--18097661477016__rich_text_fUPhEd-padding {
display: none;
}

Thanks