I see what you need now - to over ride the link properties for specific styles
You would add this for each class you want to alter:
.newlighttable a:link {
color: #FFFFFF;
background: none;
}
. newlighttable a:visited {
color: #FFFFFF;
background: none;
}
. newlighttable a:active {
color: #DFE6EF;
background: none;
}
. newlighttable a:hover {
color: #BCD0ED;
background: none;
text-decoration: none;
}
Do that for newdarktable and newsubjecttable as wel - alter colors as needed.
