Announcement

Collapse
No announcement yet.

Adding a link to a image inserted into a html fragment

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

    Adding a link to a image inserted into a html fragment

    Hi,

    Please help me.

    I have a featured fragment on the home page with a product image which is linked to the relevant section from within the actinic software. I also have a more >> graphic button which is hardcoded in the page using dreamweaver because actinic fragments only allow you to insert one image at a time.

    So Ideally I would link to know what I need to add to the more button so it also links to the same section without having to hardcode a link like shoes.html incase the client changes the featured product.

    I have attached an image trying to explain what I mean.

    I do hope this make sence.

    a big thanks in advance

    Angi
    Attached Files
    christopherpiperwines.co.uk
    skatewarehouse.co.uk
    progrow.co.uk
    cheeksandcherries.co.uk

    #2
    You can use Actinics embedded HTML in the fragment description to add other images. Just surround your HTML with !!< and >!!

    E.g.

    Blah blah!!<<img src=myimage.jpg>>!! blah.

    You may need to upload such images via Advanced / Additional files.

    Norman
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thank you for that but i was hoping to add a link around the button as to add the image in actinic would change my layout slightly when its already been signed off by the client.

      Any more ideas please??

      thank you

      angi
      christopherpiperwines.co.uk
      skatewarehouse.co.uk
      progrow.co.uk
      cheeksandcherries.co.uk

      Comment


        #4
        Here's something to try.

        A link of the following format will create a link to a product...

        http://your.URL/cgi-bin/ss000001.pl?PRODREF=12345

        Where 12345 is the reference of the product you want to link to. You could supply this PRODREF value via a store-level custom property. In other words, create a new custom property called 'FEATURE' and set a value for it in 'Design | Options | Site Defaults' of the product reference of the product you want the 'More...' button to link to. Then include HTML similar to the following in your fragment template:

        <a href="http://your.URL/cgi-bin/ss000001.pl?PRODREF=CUSTOMVAR:FEATURE">
        <img src="more.gif">
        </a>

        Comment

        Working...
        X