View Single Post
Old 02-10-2007, 08:41 PM  
Aric
Confirmed User
 
Aric's Avatar
 
Industry Role:
Join Date: Sep 2002
Posts: 1,209
99% of the time it is spaces in the HTML.. especially when it comes to an image in a table cell.

Example from your code:

Code:
<td>
			<img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
would be better off as

Code:
<td><img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
Sounds crazy, but it usually fixes those mysterious gaps
__________________
Awesome cloud hosting by DigitalOcean
Aric is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote