I'm having a problem with some css on a website I am working on. I have validated and there doesn't seem to be anything wrong with the css code itself.
So here's the deal- every other part of my css works, just not the link styles in the body section. The link coding in the header, footer and sidebars work perfectly. In fact, all other body css works fine (h1, etc), just not the body section links. I don't see any conflicting code in the individual page html but I could be missing something. Here's a link to the most obvious page:
http://firelightincentives.com/resources.shtml
The links should all be red and underlined (and show up that way in Dreamweaver) but they are showing up as black and then grey when clicked. So it appears the a:visited is working but not the a:link or a:hover.
This is the code:
a:link {
color: #FF3333;
font-weight: bold;
text-decoration: underline;
}
a:visited {
color: #606163;
text-decoration: underline;
}
a:hover {
color: #606163;
font-weight: bold;
text-decoration: underline;
}
Could this be an issue of using shtml pages or javascript in the headers? I am at a complete loss. Any help would be appreciated!


Reply With Quote

Bookmarks