jondoe0069
Programmer
I know I'm doing something dumb, but someone please tell me why my spacer image/line is not showing up on my page from the following code:
<xsl:for-each select="Spacer">
<tr bgcolor="#efefef">
<td colspan="3" height="1"><img src=" width="180" height="10" alt="" /></td>
</tr>
<tr bgcolor="#ce000c"><td width="25" height="25"><img src=" width="25" height="25" alt="" /></td>
<td width="10" height="25"><img src=" width="10" height="25" alt="" /></td>
<td width="145" height="25"><xsl:value-of select="Spacer/SpacerItem"/></td></tr></xsl:for-each>
I have the same formatting in another element above this element and it shows up. If I'm not explaining this clearly enough, please let me know. I'm new to XML/XSL. Thanks!
<xsl:for-each select="Spacer">
<tr bgcolor="#efefef">
<td colspan="3" height="1"><img src=" width="180" height="10" alt="" /></td>
</tr>
<tr bgcolor="#ce000c"><td width="25" height="25"><img src=" width="25" height="25" alt="" /></td>
<td width="10" height="25"><img src=" width="10" height="25" alt="" /></td>
<td width="145" height="25"><xsl:value-of select="Spacer/SpacerItem"/></td></tr></xsl:for-each>
I have the same formatting in another element above this element and it shows up. If I'm not explaining this clearly enough, please let me know. I'm new to XML/XSL. Thanks!