suicide1405241470 0 Report post Posted September 10, 2004 I have multiple links on my page, but a few of them are in a table with a dark background, while others are on a light background. I have them in css sheets, but I was wondering how you would go about creating them so that the link color, active link, and visited link are different for both of them? Share this post Link to post Share on other sites
overture 0 Report post Posted September 10, 2004 you can just put them in a single css file and do this for each table row or column:for the dark table links you can do this: .darklink a:link, a:active, a:visited, a:hover { color: #ffffff; text-decoration: underline; font-weight: bold;}the links become light as the background is dark.for the light table links do this:.lightlink a:link, a:active, a:visited, a:hover { color: #000000; text-decoration: underline; font-weight: bold;}the links become dark as the background is light.now all you have to do is on the table row or column which is dark add this to it:class="darklink" for the light column or row do this:class="lightlink" hope that helps some. Share this post Link to post Share on other sites