Quick one here, I have these xsl variables set up, but they are not being displayed in the HTML:
<xsl:variable name="type" select="arf"/>
<xsl:variable name="altType" select="dgh"/>
<xsl:variable name="iconSrc" select="link"/>
<img src="{$iconSrc}" alt="{$altType}" width="12" height="14" border="0" align="absmiddle"/> <span class="nav"><xsl:value-of select="$type"/></span><a href="{$link}" class="linksmall">This is a link</a><br/>
Is there a way to put these xsl values in this HTML line? It has to be in xsl variables because the value changes depending on page.
thanks
<xsl:variable name="type" select="arf"/>
<xsl:variable name="altType" select="dgh"/>
<xsl:variable name="iconSrc" select="link"/>
<img src="{$iconSrc}" alt="{$altType}" width="12" height="14" border="0" align="absmiddle"/> <span class="nav"><xsl:value-of select="$type"/></span><a href="{$link}" class="linksmall">This is a link</a><br/>
Is there a way to put these xsl values in this HTML line? It has to be in xsl variables because the value changes depending on page.
thanks