Announcement

Collapse
No announcement yet.

Hyperlinking an image

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Hyperlinking an image

    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!

    #2
    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
    Thank You
    Menar Khan

    Comment


      #3
      Originally posted by Menar
      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

      Comment

      Working...
      X