I’m doing some modifications to a wordpress theme, but I’m having a challenge removing the top border on a table. As seen in the example below, it’s getting some strange details added to it:

table { (user agent stylesheet)
display: table;
border-collapse: separate;
border-spacing: 2px;
border-color: gray;
}
and then mine:
table {
border: none;
border-collapse: separate;
border-spacing: 0;
border-color:#FFFFFF;
}
However, the strange part is that’s only the top-border that is being displayed. It may be that I’m missing something here. Or, it’s pretty obvious…
Example site: http://friknektene.no/wordpress/?page_id=2
The
border-topis coming fromstyle.css, line 815:As you can see, the
border-topis being applied to atd, not atable. That’s why your attempt to override isn’t working.Try this instead:
You may or may not want to keep
.comment-content tdin the selector above.