hi lpastor,
Have you checked the error message? Might give a clue, right?
Btw, I'm guessing you're assigning a variable twice. Don't think that is supported in xslt!
Code:<xsl:variable name="pointdirection" select="/macro/pointdirection" />
and
<xsl:variable name="pointdirection">
<xsl:choose>
...
</xsl:choose>
</xsl:variable>
Btw 2: Not sure if following construct is xlst valid...
Code:<xsl:when test="<xsl:value-of select="$pointdirection"/>='left'">
Why not using following construct?
Code:<xsl:when test="string($pointdirection)='left'">
Regards,
/Dirk
level 1 & 2 certified - umbraco MVP 2008/2009 - umbraco blog at
netaddicts.be - working on an integrated forum4umbraco