Remove the Enter Your Password text and keep the HEADER logo centrally aligned in dawn theme

Hi All,

I am trying to achieve the following on my Dawn Theme’s Password page:

  1. Remove the Enter Your Password text and lock icon from the password page.
  2. Keep my logo in the header centrally aligned. I have tried everything but all solution seem to be old.

Can anyone please assist.

Hi @devnoob ,

You can follow these steps to make the effect

  1. Open Online Store > Theme > Edit Code

  2. Find and open the base.css (or theme.css, custom.css) file

  3. Paste the code snippet below at the bottom of the file and hit save

password-modal {
    display: none;
}

.password-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

Here is the result

Hope this helps you solve the issue.

Please don’t forget to Like and Mark it as an Accepted Solution if you find this helpful. Thank you!

1 Like