Page is a not externally linkable
lucy24 - 9:10 am on Sep 21, 2011 (gmt 0)
Slightly OT but:
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="20%" class="dataBold borderBlack ">Property Address:</td>
<td width="30%" class="dataCell borderBlack borderNL ">8408 JONFRED CT CINCINNATI, OH 45231</td>
Based on the table you show here, you can add the cell width (20% or 30%) to the CSS for the respective classes. And if you give the table a class name you can then say
table.borderBlack td {border: solid 1px #d7d7d7;}
and cut out a lot of clutter.
When you say {border-width: 0px;} do you mean "none" or "hidden"? They mean different things, and may be affecting your cell size:
[w3.org...]