Announcement

Collapse
No announcement yet.

Image in Home Page Fragment - PLease help!

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

    Image in Home Page Fragment - PLease help!

    Hi All,

    I am very new to Actinic and I am experimenting with different layout options.

    I am having a problem trying to place an image in one of my Home Page Fragments. I am using the layout option "image to left of table and text" & I have typed in the title and selected the image (CCV.gif). I am trying to display the same image in the "text" area by embedding HTML into the text field using the following code:

    !!<
    <img scr="CCV.gif" width="85" height="250" alt="my CCV image">
    >!!

    The image exists in my Site1 Folder and it displays (as expected) to the left of the title & text. The image does not display in the text area (all I get in the text area is the image placeholder).

    Any help would be gratefully accepted,

    ART

    #2
    Welcome to the forum Allan.
    You will need to add the image file to the Additional Files list and also place a copy of it in the Preview HTML folder. That should solve your problem.

    Any images referenced with embedded HTML will need to be handled in this way.

    Comment


      #3
      Your HTML code has a mistake in it:

      <img scr="CCV.gif" width="85" height="250" alt="my CCV image">

      should read: img src

      Dave

      Comment


        #4
        If going to be totally pedantic you should use

        <img src="CCV.gif" width="85" height="250" alt="my CCV image" />

        with the trailing "/" at the end to close off the tag.

        May also be worth using the title="credit card verification" to allow the "mouseover name" to appear in Mozilla.

        IE can also cause some layout issues due to white space in code - usually good practice to use !!<<img .... />>!! all together rather than on 3 lines as in the OP


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #5
          Resolved

          Thank you all for your prompt & incisive help - I have a lot to learn!

          All the Best,

          Allan

          Comment

          Working...
          X