PDA

View Full Version : Hyperlinking an image


David Lubich
23-Dec-2003, 01:50 PM
I want to embed a hyperlink in our main logo (the one placed in Design>Options>brochure and Design>Options>Shop defaults. I can't find the image in any of the template files, so can't put in the bit of html to make this happen.
I'm sure this is a horribly simple question, but I'm beyond embarrasment here!

Menar
23-Dec-2003, 02:23 PM
Hi there,

In Actinic if you goto Advance|Template Manager|Brochure tab, click on the 'Primary' button (If in the graphical view then click on the change view button), look for the variable 'NETQUOTEVAR:BROCHURELOGO' and insert the following code before the <TD> tag;

<a href="http://Domianname/More_Info.html"> then insert this '</a>' after the </TD> therefore, the line should read;

<a href="http://YourDomainName/More_Info.html"><td>NETQUOTEVAR:BROCHURELOGO </td></a>

Save and exit the file.

You need to also do the same for the 'Primary' button within the 'Main' tab but the variable will be called "NETQUOTEVAR:LOGOIMAGE".

Hope this helps

AnnaHamilton
11-Aug-2006, 04:03 PM
Hi there,

In Actinic if you goto Advance|Template Manager|Brochure tab, click on the 'Primary' button (If in the graphical view then click on the change view button), look for the variable 'NETQUOTEVAR:BROCHURELOGO' and insert the following code before the <TD> tag;

<a href="http://Domianname/More_Info.html"> then insert this '</a>' after the </TD> therefore, the line should read;

<a href="http://YourDomainName/More_Info.html"><td>NETQUOTEVAR:BROCHURELOGO </td></a>

Save and exit the file.

You need to also do the same for the 'Primary' button within the 'Main' tab but the variable will be called "NETQUOTEVAR:LOGOIMAGE".

Hope this helps

Although this is an old thread and has in all probability been covered again somewhere I thought I should point out that the above is incorrect, the <a href="http://Domianname/More_Info.html"> should come after the <TD> tag and the </a> before the </TD>. So the line should read:

<TD><a href="http://YourDomainName/More_Info.html">NETQUOTEVAR:BROCHURELOGO</a></td>

cheers

Anna