How can I change the text font color on my password page to white?

Hey there,

I have read through multiple threads in order to change the text fonts color of our password page to white. Unfortunately, none of the provided answers worked out for me.

Maybe someone can help me with this problem?

shop link: https://seakjewelry.com/password

basically, the following text should be in white, not grey:

"SEAKDROP NO.1

Melde dich an, bevor andere es tun!

Erhalte 1h früher Zugriff auf den limitierten Drop."

Thanks in advance!

Hello,

  1. Go to Online Store->Theme->Edit code
  2. Asset->theme.scss paste bellow code in bottom of file
.password-content{
color: #fff;
}

Thanks

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
h1.site-header__logo-link span.logo {
color: #fff!important;
}

h1.site-header__logo-link span.h2.password-content__title {
color: #fff!important;
}
.password-content.password-content--rte p.h4 {
color: #fff!important;
}
.password-content.password-content--rte p{
color: #fff!important;
}
span.h2.password-content__title font {
color: #fff!important;
}

hello @nathan991

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-password .password-content{
    color: #fff!important;
}
.template-password .password-content--rte >p.h4{
    color: #fff!important;
}
.template-password .password__form-subheading.rte >p{
     color: #fff!important;
}
1 Like

Thanks a lot!