Announcement

Collapse
No announcement yet.

HTml in catalog files

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

    HTml in catalog files

    Hey there
    Am a bit of a newbie to this software so here's the qs
    Have a webpage with all the catalog files preset up.
    I want to add an image to the section containing the product description and link from that image. Currently i have this code in it!

    ----------------------------------------
    !!<
    <br>Parallel ATA (Parallel Advanced Technology Attachment or PATA) is a standard for connecting hard drives into computer systems. As its name implies, PATA is based on parallel signaling technology. Most new motherboards accept both parallel ATA and serial ATA.
    </br>
    <a href="WEBSITE ADDRESS OF IMAGE">
    <img border="0" src="WEBSITE ADDRESS OF IMAGE" width="200" height="145">
    </a>
    >!!
    -----------------------------------------
    Ideally what i want is the description then 3 images underneath when clicked on link to full size image on another page. Theses pics can be stored either in catalog or on server not bothered which.
    All i'm getting at the mo is the www.address.com/catalog/wwww.image address.com
    so any help would be appreciated!
    paddy

    #2
    Sorry, it sounds as though you are trying to add a product. Have you read the Starter Guide available from the Help Menu within Actinic?
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      hey there no i have a good understanding of how it basically works and how html code works but my problem is adding additional images to the section where you would normally put you text description. I can use html code to edit the text by adding "!!<" and ">!!" and then adding the appropriate code in between, but i want to add additional pictures that are either stored online or uploaded as part of the catalog files. So either a link n or else jpeg file needs to be added but as yet i havent found a way to!
      Any answers let me kno!

      Comment


        #4
        The code you need for each small image will be something like this
        Code:
        <a href="javascript:ShowPopUp('info%5f3%2ehtml',800,450);"><img src="../yoursmallimage.jpg"></a>
        replace info%5f3%2ehtml with the escaped html filename that you have created which contains the larger image.

        the html filename I used is info_3.html so %5f = _ and %2e = . (period)
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment


          #5
          Is that for a file stored in with the catalog files how do i link from a image on the net? ie is ther code to use the / and also the :

          Comment


            #6
            Bill is suggeting your create a new HTML page called info_3.html on which you have the source code pointing to the larger image... this can be either local or on another server eg: <img src="http://www.site.com/large_pic.jpg">

            The javascript works by clicking the smaller images and the popup then fires open the info_3.html page which displays the larger pic.

            Make sure you have permission to link to the pic and it is a static location - some servers are set to prevent "hot linking" of images and replace the intended image with a "This picture has been stolen from" image - or worse!


            Bikster
            SellerDeck Designs and Responsive Themes

            Comment


              #7
              Be careful not to have the image showing on the secure checkout pages as the external link will probably generate a warning message in the users browser saying some of the page is secure and some is not - not ideal for customer confidence.


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment


                #8
                Another thing which you could do is open a new window with a larger image, but
                you would not leave the page where you are currently located:

                For example:

                <a href="actinic/image.jpg" target="_blank" width="180" height="252">
                <img src="actinic/image.jpg" width="50" height="80" border="1" align="left">
                Click HERE to enlarge image
                </a>

                Comment

                Working...
                X