Forum Moderators: open
The (simplified) XSLT code is pretty simple:
<td><a>
<xsl:attribute name="href">
<xsl:value-of select="$VirPath" />default.aspx
</xsl:attribute>
<img name="ImageName" src="Image.gif>
</img></a></td>
How can I force the transformed HTML to line up properly so I dont get this 2px gap under my images?
More fundamentally, why are you including a closing tag for <img>, an empty element? Browsers' methods of handling or ignoring an invalid HTML tag are outside the domain of XSLT.