Hi
I am using the Craft theme and the boxes of my customer login page are black and I want to make them transparent.
Can someone tell me how to change the colour of the boxes. There is a photo below.
If someone can tell me what code to use and where to put it in the Craft theme that would be great
I am not willing to share url as the site is not published yet.
1 Like
Hi There,
Can you share you store URL and Frontened paswword to do some investidation.
Thanks.
no sorry I don’t want to share password .
Is it not possible to supply code and where to put the code and I can do it myself?
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
input#CustomerEmail {
background-color: #fff;
}
input#CustomerPassword {
background-color: #fff;
}
1 Like