Why is my CSS stylesheet not affecting text within an html table?

Nick

New member
http://www.fkcapitalfund.com is the website i'm working on. If you notice, half-way down the page, you can hover the mouse over the 2 links and they'll change color. The CSS code to do that is:
<style type="text/css">
<!--
A:link { text-decoration: underline; color:"#ffffff" }
A:visited { text-decoration: underline; color:"#ffffff" }
A:hover { text-decoration: underline; color:"#3399ff" }
-->
</style>

Now, that CSS code is not affecting the links within the various tables, like, for example, the top. Please help. I've been trying to figure this out for over an hour now, searching everywhere.
 
Back
Top