I need help changing all the text and button in the account section to the color white. Does anyone know how I might do this?
Website: www.puffplayground.com
I need help changing all the text and button in the account section to the color white. Does anyone know how I might do this?
Website: www.puffplayground.com
Hey @puffplayground
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
thank you that seems to have worked, do you know how to change the “sign in” button from yellow to white?
Hey @puffplayground
Keep the previous code and add this new code above in the end of theme.liquid file.
.customer button {
background: white !important;
}
.customer button:after {
box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(18,18,18, calc(1 - 1.0)), 0 0 0 var(--buttons-border-width) rgb(255 255 255) !important;
}
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
form#customer_login button {
background-color: #ffffff !important;
}
Hi @puffplayground Please add those CSS in the assets/base.css file. It will work.
Thanks.
.login a{
color:white;
}