There wasn't an HTML section for this forum so i just thought i would put it here. Anways, what i want to do is have different link colors for different tables...
I kno that in the stylesheet, all the code pertaining to links (active, visited, hover etc.. ) go in the header:
a:link { text-decoration: none; font-family: Verdana; font-size: 10px; color: #3F586F };
a:active { text-decoration: none; font-family: Verdana; font-size: 10px; color: #3F586F };
a:visited { text-decoration: none; font-family: Verdana; font-size: 10px; color: #3F586F };
a:hover { text-decoration: none; font-family: Verdana; font-size: 10px; color: #35393d };
something like that. However, i want to be able to have it so that lets say one table has links in white and hovers to black. And in another table, i have links in red and hovers to green. I tried putting things like:
a:blah:link {}
a:blah:active {}
a:blah:visited {}
a:blah:hover {}
but no luck with that since it changes EVERYTHING in my page to that. I want it so that i could just use specific classes for the tables in which the link options pertain to.
e.g. <table class="whitelink"> . all the link in this table are different from that of <table class="redlink"> lets say.
HOpe anyone can help me with this.