Subject:Creating an XSL link out of a stylesheet graphic Author:Patricia Watson Date:22 Jan 2007 04:31 PM
I have an xsl file that pulls a graphic, via a stylesheet, thusly:
Code:
<!-- Render the header banner and overlay it with the account toolbar -->
<xsl:if test="not($isPortal)">
<div id="headerBanner">
<xsl:call-template name="renderAccountToolbar"/>
</div>
</xsl:if>
What I want to do is make the "headerBanner" act as a link to another page.
I freely admit to knowing nothing about xsl, xml, etc. and will greatly appreciate any help I can receive.