if i have a table with the link/vlinks color set to black, and another table, can i make the second table's link/vlink white w/ out having to change both of them to either white or black?basically i want 1 black and the other white.thnx in advance.
Printable View
if i have a table with the link/vlinks color set to black, and another table, can i make the second table's link/vlink white w/ out having to change both of them to either white or black?basically i want 1 black and the other white.thnx in advance.
You could use CSS. Do a search for it on google or something. Or someone else will probably post code. You could also use JavaScript and the onMouseOver onMouseOut.
You can do that using css. For example, here's how to do it using the DIV tag and CSS
HTHCode:<STYLE type="text/css">
a.first { color: black; font-weight: bold;}
a.second { color: white; font-weight: bold;}
</STYLE>
<DIV ID="first">
<table blah blah>
blah blah
</table>
</div>
<DIV ID="second">
<table blah>
blah blah
</table>
</div>