4
from:
http://stupidityinmotion.com/themes/Zaja_Blue/style.csstable td
{
padding: 0;
border-width: 0;
vertical-align: top;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
So, in short; yes: you are right. The bigger question is what are you going to do about it? You most certainly don't want to make the value in the CSS document 1 (that'd be horrific for the rest of your site)... so instead you need to localize the border somehow to this particular table. Unfortunately I'm not great with CSS :(.
So, you have two options:
1. Play around with CSS, and either:
a: alter your html and put in individualized CSS tags for every td, which might overright the problematic global tag (DIRTY solution)
b: create a new CSS class in your CSS document with the correct table definitions and assign this particular table that class... I don't know how to do this properly, but if you're persistant you can probably get it... I recommend copying off of the other specific classes.
or 2. Wait around until someone can tell you the exact code to do it!
In any case, good luck.
Keith