Announcement

Collapse
No announcement yet.

Adding mutiple links within a new fragment?

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

    Adding mutiple links within a new fragment?

    Hello there everyone!!

    Can any one help, I have added a New Fragment is there any way in which i can add mutiple links under the fragment link tab, or will it have to be manually done in the General Tab under the Text bit??

    Cheers

    Pauline

    #2
    If it's only needed a few times then embed some HTML into the Fragment Text.

    If you want to Automate it then you could create several new Variables "FragmentLink1, FragmentLink2, FragmentLink3", etc. The add some code to your fragment layout like
    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22FragmentLink1%22%20%2f%3e%20%21%3d%20%22%22" ><a href="<actinic:variable name="FragmentLink1" />"><actinic:variable name="FragmentLink1" /></a><br/>	
    </actinic:block>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22FragmentLink2%22%20%2f%3e%20%21%3d%20%22%22" ><a href="<actinic:variable name="FragmentLink2" />"><actinic:variable name="FragmentLink2" /></a><br/>	
    </actinic:block>
    etc
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Or you could just add HTML straight into the fragment. by adding !!< to the start of the code and >!! to the end. So the link would look like this;

      !!<<a href="http://www.wherever.co.uk">link text</a>>!!

      Cheers,

      Jon

      Comment


        #4
        Originally posted by jonpugh114
        Or you could just add HTML straight into the fragment. by adding !!< to the start of the code and >!! to the end. So the link would look like this;

        !!<<a href="http://www.wherever.co.uk">link text</a>>!!

        Cheers,

        Jon
        and, of you do go for this route..check out THIS THREAD for a shortcut method!!
        Tracey

        Comment


          #5
          check out THIS THREAD for a shortcut method
          Doh! I wrote that only a few days ago and had forgotten about it already!
          Norman - www.drillpine.biz
          Edinburgh, U K / Bitez, Turkey

          Comment


            #6
            Originally posted by NormanRouxel
            Doh! I wrote that only a few days ago and had forgotten about it already!
            I could never forget it!
            It saved me hours and hours
            Tracey

            Comment

            Working...
            X