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:
-
CSS Code Edit (Rahul_dhiman):
- Navigate to: Online Store → Themes → Actions → Edit Code → base.CSS (line 608)
- Replace existing
.underlined-link, .customer aCSS withcolor: white !important;or custom color code (e.g.,#ccff00for green)
-
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.
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
@tansrirain458 Please follow the below steps to change the text colour in the password page. Let me know whether it is helpful for you.
- Go to “Online Store” → “Themes”.
- Click “Customize” button from the current theme.
- Search for the “Password” page in the dropdown like in the below attached screenshot.
- Click the “Password header” to edit like in the below attached screenshot.
- Find the “Color scheme” and click “Edit” like in the below attached screenshot.
- 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.
- 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.
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…!!!
You’re a life saver , thanks alot ! God Bless







