How can i make the text and button on “make new customer account” white?
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- 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!

