I added in some html to the header area, and I'm trying to style my links there differently than the links on the rest of my site. No matter what I try, the link styling in the atahualpa settings are overriding it. I've tried putting <span> around the links, tried using css, and even tried putting "important" in the css. Here is what I have in my css right now for them:
Code:
.topcats a:link {
font-weight: normal !important;
color: #353535 !important;
}
.topcats a:hover {
font-weight: normal !important;
text-decoration: underline !important;
color: #98A09E !important;
}
.topcats a:active {
font-weight: normal !important;
text-decoration: underline !important;
color: #98A09E !important;
}
As you can see on my site:
http://www.kristalnorton.com/ The text is still blue, but it should be grey. The hover function seems to be working, but the active link function isn't. What am I doing wrong? TIA!