You're trying to jam up to 3 50px wide images into a table cell that is only 50px 
wide. Put line breaks after your image tags, and set the valign of your table cell to 
"top".

HTH

Mike

>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

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Reply via email to