Change Text Colour White On Password Page Dawn 7.0.1

Hello,

I would like to make the password page text colour white?

How can i make this work?

Thank you, much appreciated!

LINK: https://kilvay.com/

Hi, @scotticus .

Follow These steps,

Go to the online store theme and go to base.css file paste the code mentiond below.

.banner__content.banner__content--middle-center.page-width h2.email-signup-banner__heading.h1 {
    color: white;
}

.banner__content.banner__content--middle-center.page-width p {
    color: white;
}

.banner__content.banner__content--middle-center.page-width label.field__label {
    color: white;
}

Result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

2 Likes

Hello @websensepro ,

Thank you for the reply!

That worked! How would i remove the black container on mobile?

Thank you again.

Follow These steps,

Go to the online store theme and go to base.css file paste the code mentiond below.

@media screen and (max-width: 749px) {

.banner:not(.banner--mobile-bottom) .banner__box {
    background: transparent;
}

}

Result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

1 Like