Adding a hyperlink in a logo in footer
Posted: Tue Jan 17, 2017 7:41 pm
Hi,
In my PDF output, I have our company logo in the footer. I would like this logo to be a hyperlink to the index. Is that possible? I haven't found topics on this issue.
I managed to insert a link to an external web site, but I cannot figure out how to point to the index.
This is what I wrote so far in the insertBodyOddFooter xsl template:
Regards,
Julie
In my PDF output, I have our company logo in the footer. I would like this logo to be a hyperlink to the index. Is that possible? I haven't found topics on this issue.
I managed to insert a link to an external web site, but I cannot figure out how to point to the index.
This is what I wrote so far in the insertBodyOddFooter xsl template:
Code: Select all
<fo:inline>
<fo:basic-link color="blue" external-destination="url('http://www.google.com')" text-altitude="0.50cm">
<fo:external-graphic src="url(Customization/OpenTopic/common/artwork/Mylogo.png)" content-height="scale-down to-fit" height="0.50cm"/>
</fo:basic-link>
</fo:inline>
Julie