Make new customer account text and button color?

Topic summary

A user needed to change the text and button colors on their Shopify store’s “Create New Customer Account” page to white.

Solution provided:

  • Navigate to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS
  • Add CSS code targeting:
    • .customer.register > h1 for white heading text
    • .customer.register form#create_customer > button for white button background with black text
    • Button shadow removal for cleaner appearance

Outcome: The CSS solution successfully resolved the styling issue. The user confirmed it worked perfectly.

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

How can i make the text and button on “make new customer account” white?

Hi @silenceclothing

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.customer.register > h1 {
    color: white;
}
.customer.register form#create_customer > button {
    background: white;
    color: black !important;
}
.customer.register form#create_customer > button::after {
    box-shadow: none !important;
}

Here is the result:

I hope this helps

Best,

Daisy

thankyou! this worked perfect!