I’m going nuts… I cannot figure out why my links are not showing up how I want them to. The navigation links show up like the CSS tells it to, but the “link 1” and “link 2” have a mind of their own. I do not understand why they are not listening to CSS. link 1 and link 2 should be red, then become underlined on hover. Also the Test link in the middle section displays differently in Firefox vs IE. Any help is greatly appreciated!!
www.texasriptide.org/css/default.css
here is the css for link1 and link2
#left div.profile{
text-align:center;
}
#left div.profile a:link, a:visited {
font-size: 90%;
line-height: 140%;
color:#CC0000;
text-decoration: none;
}
#left div.profile a:hover {
color:#CC0000;
text-decoration: underline;
}
#left div.profile a:active {
color:#CC0000;
text-decoration: underline;
}