You have 3 style.css files in that page. In one of then you have this which is telling every table to be that size. Can you do without that style for that page?
table th, table td {
vertical-align: top;
padding: .5em 1em;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
border-right: 1px solid rgba(0, 0, 0, 0.1);
border-top: 2px solid rgba(0, 0, 0, 0.025);
border-bottom: 1px solid #eee\9;
border-right: 1px solid #eee\9;
border-top: 2px solid #f6f6f6\9;
text-align: left;
}
|