I want to hide "imageText" and the div IF string is empty. At the moment, this imageText overlays text onto an image with a background color (the text is specified in Umbraco).
I've already tried:
<xsl:if test = "imageText" != ''">
Could someone please help me accomplish this?
Here's my code:
<td width="300" height="114" valign="top">
<div class="imageTitle">
<xsl:call-template name="getText">
<xsl:with-param name="imageText" select="$bottomImageLeftText" />
</xsl:call-template>
</div>
</td>