This topic has 6 replies, 3 voices, and was last updated 4 years, 11 months ago ago by Rose Tyler
Hi there-
I’ve been struggling to find a snippet of css to change the static button color to green, hover color to grey. If you could help me out that would be awesome!
Thanks!
Mari
Hello,
Do you want to change color for all type of buttons (bordered and dark) or just for any of them.
Regards
I would like to make all buttons the same color.
Thanks!
Hello,
.btn, .button {
background-color: #35ad4f !important;
color: white !important;
border: 1px solid #35ad4f !important;
}
.btn:hover, .button:hover, .btn.filled:hover {
color: grey !important;
background-color: white !important;
border: 1px solid gray !important;
}
Regards
That worked!
Thanks and happy holidays!
Hello,
You’re welcome. Happy Holidays to you too!
Regards
You must be logged in to reply to this topic.Log in/Sign up