Is there a way to override an existing css declaration?
I do not have access to the html page. I only have access to the css page. Currently, I would like to override the existing css declaration:
.category .content table tbody tr.new td {
font-weight: bold;
}
with:
.category .content table tbody tr.new td a:visited{
font-weight: normal;
}
Unfortunately, what I've attempted to do fail. I would greatly appreciate any suggestion to accomplish my task.
Start Free Trial