Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
Solved! Go to the solution
This is an accepted solution.
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
This is an accepted solution.
Sure , change the same code with this and save
.underlined-link, .customer a {
color: #ccff00 !important;
}
and the result will be
Thanks a lot......!!!
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?
This is an accepted solution.
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
Thanks so much ! Appreciate it , got it fixed . If it's possible to change to the green that I'm using ?
This is an accepted solution.
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
@tansrirain458 Please follow the below steps to change the text colour in the password page. Let me know whether it is helpful for you.