I an trying to dynamically build an html table and draw
wall modules and am having a problem with html or CF
adding extra space between images.

Here is an simplistic example:

<cfset x = 40><cfset y = 100><cfset z = 50><cfset total = x+y+z>

<table width="50" cellpadding="0" cellspacing="0">
<tr>
<td width="50" height="#total#">
<cfif transom is 1>
    <img src="transom.jpg" width="50" height = "#x#">
</cfif>
<img src="window.jpg" width-"50" height="#y#">
<cfif kickplate is 1>
    <img src="kickplate.jpg" width="50" height = "#z#">
</cfif>
</td>
</tr>
</table>

When this table displays there is space between
each of the three images above and below

If I condense the table into ONE line of code
the spacing goes away and the pictures connect
perfectly together with ZERO spacing period.

<table width="50" cellpadding="0" cellspacing="0"><tr><td width="50"
height="#total#"><cfif transom is 1> <img src="transom.jpg" width="50"
height = "#x#"></cfif><img src="window.jpg" width-"50" height="#y#"><cfif
kickplate is 1><img src="kickplate.jpg" width="50" height =
"#z#"></cfif></td></tr></table>

It makes modifying the code or reading it a royal pain.

Any help would be appreciated.

Terry Troxel


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Reply via email to