I use dawn theme and how can i put hover color on button sign in
Text color: #FFFFFF
Button backround color : #000000
A user seeks to add hover color effects to the sign-in button in Shopify’s Dawn theme.
Desired styling:
Solution provided:
Add custom CSS code through the theme customizer’s ‘Custom CSS’ settings:
#customer_login button:hover {
color: #ffffff;
background-color: #000000;
}
The original poster confirmed the solution worked with a brief thank you response.
I use dawn theme and how can i put hover color on button sign in
Text color: #FFFFFF
Button backround color : #000000
Hey @VisarK !
To accomplish this, you can add the following CSS code into the ‘Custom CSS’ settings in your theme customizer.
#customer_login button:hover {
color: #ffffff;
background-color: #000000;
}
Thanks a lot