Site URL: https://peachanddot.com/
Hi,
Do you know how to change the hover text for my sign up forms (both can be seen on this page (https://peachanddot.com/freebies) from black to white (so it matches the rest of the buttons on the site). I've managed to change the rest of the buttons with this tweak:
/* BUTTON TEXT TWEAK */
.sqs-block-button-element{
color: #ef7b7b !important;
background: #ffffff !important; background-color: rgba(0, 0, 0, 0) !important;
border: 2px solid #ef7b7b !important;
&:hover {
color: #ffffff!important;
background: #ef7b7b !important;
border: 2px solid #ef7b7b !important;
}}
.form-wrapper input[type=submit]:hover {
color: #ffffff !important;
background-color: #ef7b7b !important;
}
Thanks!