Hi @JFAN5
Thanks for sharing the page link. So I found the class which has the button background color. Now you can add these line of CSS to give your custom color:-
.button, .button:visited, .btn-primary, .btn-primary:visited, .hs-button, .hs-button:visited {
background-color: #EC9BAE;
}
On Hover:-
.button:hover, .button:focus, .btn-primary:hover, .btn-primary:focus, .hs-button:hover, .hs-button:focus {
background-color: #78C7CB;
}
If it still doesn’t work then add !important after the color hex code like this:- background-color: #EC9BAE !important; .
Hope this will helps you out. Please mark it as Solution Accepted & Upvote to help other Community member.
Thanks!