I have customized my menu at the top and I want the "Contact Us" link to appear in white. Here is what I have added so far:
.cta-button {
border: 2px solid red;
border-radius: 15px;
padding: 5px;
background-color: red;
top: -6px;
color: #ffffff !important;
transition: all .3s 0s;
}
.cta-button a:link, a:visited, a:active {
padding: 0px !important;
color: #ffffff !important;
}
You can view it live here:
Despite adding "!important", the link remains black as it is inheriting styles from the header module rather than this specific code for that particular link.
Thank you