How can I go about on changing the text colour in the Enter using password page?

Topic summary

A user seeks to change the text color in the top-right corner of their Shopify store’s password-protected page, using the Dawn theme.

Solutions Provided:

  1. CSS Code Edit (Rahul_dhiman):

    • Navigate to: Online Store → Themes → Actions → Edit Code → base.CSS (line 608)
    • Replace existing .underlined-link, .customer a CSS with color: white !important; or custom color code (e.g., #ccff00 for green)
  2. Theme Customizer Method (Vinsinfo):

    • Go to Online Store → Themes → Customize
    • Select “Password” page from dropdown
    • Click “Password header” section
    • Edit “Color scheme” settings
    • Update “Outline button” value to desired color

Resolution:
The user successfully fixed the issue and requested an additional color change to green, which was provided via updated CSS code. The discussion is marked as resolved with the user expressing gratitude.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.


How can I change the text colour on the top right ? Possible to give me step by step instructions . It’s using a dawn theme . Website url is : https://www.platoworldwide.com/password

Hi, I can’t see the text in the top right corner. Can you tell me which text you want to modify it’s color?

Hello @tansrirain458
Go to online store ---------> themes --------------> actions ------> edit code------->base.CSS ------line number 608
check below code there.

.underlined-link, .customer a {
    color: rgba(var(--color-link), var(--alpha-link));
}

and replace with this code.

.underlined-link, .customer a {
color: white !important;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

1 Like

@tansrirain458 Please follow the below steps to change the text colour in the password page. Let me know whether it is helpful for you.

  1. Go to “Online Store” → “Themes”.
  2. Click “Customize” button from the current theme.
  3. Search for the “Password” page in the dropdown like in the below attached screenshot.

  1. Click the “Password header” to edit like in the below attached screenshot.

  1. Find the “Color scheme” and click “Edit” like in the below attached screenshot.

  1. Make sure the value of the “Outline button” is the custom colour that you want to display the “Enter using password” text like in the below attached screenshot. If not, Please update the “Outline button” value with your custom colour and check.

  1. Then the final output will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

1 Like

Thanks so much ! Appreciate it , got it fixed . If it’s possible to change to the green that I’m using ?

Sure , change the same code with this and save

.underlined-link, .customer a {
    color: #ccff00 !important;
}

and the result will be

Thanks a lot…!!!

1 Like

You’re a life saver , thanks alot ! God Bless