change "Enter" button text color

Hi all,

I want to make a small change to the color of the “enter” button on my store’s password page. Currently the text is black and is hard to see. What code could i implement to change this?

url-

pass-

test99

  • Here is the solution for you @vvyan
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.password-button {
     color: white !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as 'Solution’ if you find it helpful. Thank you.

Hello @vvyan

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

button.password-button.button.button--outline { color: #fff !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

thank you!

thank you!