Password page change text color Debut theme

Hey there,

we are currently having difficulties changing the font color of our password page. How can I change the “enter password here” box and text into white? It should only be changed for the password page not for the whole theme.

Thanks in advance!

Shop url: https://seakjewelry.com/password

nathan99

1 Like

Incorrect password, please check it

1 Like

@nathan991

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.password-login .btn--secondary {color: #fff !important;}
.password-login .btn--secondary:not([disabled]):hover, .btn--secondary:focus {color: #fff !important;}

Hope this works.

Thanks!

1 Like

Wow thanks ever so much!

Is it also possible to make the box around the text white as well?

Thanks!

1 Like

hello @nathan991

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.template-password .btn--secondary {
    border-color: #ffffff !important;
}
2 Likes

@nathan991

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.template-password .btn--secondary { border-color: #ffffff !important; }

Thanks!