Hi,
trying to change the button text color. The following CSS does not seem to work. Hover state works, normal state not.
What do I need to specify font type and size for the button?
.sf-button.accent {
color: #000!important;
background: none;
background-image: none;
background-color: #f3f5f6!important;
border: 1px solid #ca2027!important;
color: #ccc!important;
}
a.sf-button.accent:hover {
color: #fff!important;
border: none!important;
box-shadow: none!important;
text-decoration: none!important;
background-color: #ca2027!important;
border: 1px solid #ca2027!important;
}
Thanks.