I've been struggling to change the link color of a header on my website.
By default, the link color in my CSS is blue, but I want the links in my entry headers to be gold. I thought this would be a simple task - just define the link color for the header div. However, no matter what I try, the header link color keeps defaulting to the standard blue.
Here is the CSS code for the global links:
/* Links */
a {
color: #80D4F6;
}
a:visited {
color: #80D4F6;
}
a:hover,
a:focus,
a:active {
color: #80D4F6;
}
And here are the methods I've attempted to define the header links as gold:
.entry-title h1 a{
color: #E9DB70;
}
h1 a:link{
color: #E9DB70;
}
Unfortunately, neither of these approaches have worked. You can see the issue here.
Any assistance would be greatly appreciated!