Well,
I'm attempting to use an external style sheet, but when I tested a body bgcolor all my table elements inherited the same coolor but I wanted them to retain a white bgcolor.
Also, the-
td:white {
background-color:#FFFFFF;
}
seems to be ignored by both Firefox and IE. (If this is the wrong approach please let me know.)
Any ideas? Here's my external stylesheet so far:
<style type="text/css">
body,td,th {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #000000;
}
body {
background-color: #f8c762;
}
td:white {
background-color:#FFFFFF;
}
a:link {
color: #830605;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #830605;
}
a:hover {
text-decoration: underline;
color: #830605;
}
a:active {
text-decoration: none;
color: #0b50cf;
}
a:link.dark {
color: #f8c762; text-decoration: none;
}
a:visited.dark {
color: #f8c762; text-decoration: none;
}
a:hover.dark {
color: #ffffff; text-decoration: underline;
}
img {border: none
}
</style>