How Do I Center My Logo In The Password Page Header Of Taste Theme?

I’m trying to center my logo in the header of my taste theme for the password page, however, there isn’t an option to do it within the theme settings like you can for the homepage of this theme. Can someone please help with centering it? Thank you!

My website is cultureclubworldwide.com

Hello @worldwidemotion ,

You want to like this?

Thanks!

yes exactly! please and thank you :slightly_smiling_face:

Hello @worldwidemotion ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file section-password.css

Step 3: Paste the below code at the bottom of the file → Save

@media only screen and (min-width: 750px) {
    .password-header {
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr !important;
        padding: 2rem 5rem 2.5rem;
        text-align: left;
    }

    .password-header img {
        justify-self: center;
    }
}

Thanks!

1 Like

Thank you so much, it worked!

1 Like

Welcome @worldwidemotion