Hi all!
I’m attempting to change the colour of the font of Log-in from black to a different colour. I’ve attempted to locate this in coding section, but not sure where to find the “index” section.
Can anybody help please?
Best,
Dan
Hi all!
I’m attempting to change the colour of the font of Log-in from black to a different colour. I’ve attempted to locate this in coding section, but not sure where to find the “index” section.
Can anybody help please?
Best,
Dan
Hi @ldmanagement ,
Would you mind to share your URL website and Password if have?
Its hard to locate the specific area in the Images only.
Thanks!
Hi! Thanks for the reply.
Yes, of course. https://www.euphoriastore.co.uk/
It’s located on the mobile version. If you click on Log in or Register it takes you to this section, see below
This is BSS Commerce - Full-service eCommerce Agency.
You can change the color of the “Login/Register” button by adding the following code at the end of the theme.css file
.sf-customer-section .customer-tabs input:checked ~ span {
color: #9c853b !important;
}
.sf-user-tab-label hr {
border-color: #9c853b !important;
}
With the above code, I set the color code to #9c853b, you can change that value in the color and border-color sections depending on your needs.
Hope this helps you.
BSS Commerce - Shopify Apps & Development Services Provider - Shopify Expert
Level up your Shopify store with our B2B & B2C apps
Hi @ldmanagement ,
Thank you for sharing your website.
@media only screen and(max-width: 480px){
.sf-customer-section .customer-tabs input:checked ~ span {
color: #fff;
}
}
Just change the Hex Code color and put your desired color.
Result.
I hope it help.
Thanks so much! This worked ![]()