Strange spacing for tables
Posted: Sun Apr 18, 2010 2:40 pm
Hi All,
I've been trying to troubleshoot a very odd bug in my blog http://www.mattrosales.com/. I decided that I wanted my photos to be displayed in a grid, so I am using simple table html to put my media in:
For whatever reason, this is adding very large amounts of blank space above the table. I'm using a slightly modded version of the reflection template, but I've been through the css and the php and can't seem to figure out why the space is being added. (Check out the last two posts on the blog to see what I'm talking about). Does anyone have ideas for debugging this? Thanks,
Matt
I've been trying to troubleshoot a very odd bug in my blog http://www.mattrosales.com/. I decided that I wanted my photos to be displayed in a grid, so I am using simple table html to put my media in:
Code: Select all
<div align=center><table border=0>
<tr>
<td>image</td>
<td>another image</td>
<td>a third image</td>
</tr>
</table></div>
Matt