Announcement

Collapse
No announcement yet.

Placing a page full of links in a Fragment

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

    Placing a page full of links in a Fragment

    Another one of those stupid questions I'm almost too embarrassed to ask......

    I have several pages on a non-Actinic web site that is full of images and links and I'm trying to figure out how to merge these links into a fragment page.

    Working on the theory that a picture speaks a thousand words....

    I'm trying to put http://www.lawrenceart.co.uk/catalogue/2005html into http://www.lawrenceart.co.uk/acatalo...Calalogue.html

    I'm using Actinic Buisness v8 and my knowledge of html is fairly limited.

    IS what I'm trying to achieve possible?

    Richard

    #2
    The quickest and dirtiest solution would be to put your entire extra page within a IFRAME in that fragment where you've put the "This is where I want to put..." message.

    In that fragment description simply put

    !!< <iframe src="http://www.lawrenceart.co.uk/catalogue/2005.html"> >!!

    The !!< and >!! tell Actinic that you want to embed this as HTML.

    You can fiddle with the IFRAME tag to give it a fixed height, scrollbars, etc. See any HTML reference for that.

    The other way to do this would be to copy all the code between <body> and </body> (exclusive) in your page into the Fragment (again between !!< and >!! tags). You'd need to manually FTP all images to your server using sub-directories if required.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Many thanks indeed Norman

      Richard

      Comment

      Working...
      X