PDA

View Full Version : Image in Home Page Fragment - PLease help!


ART
29-Jul-2006, 01:37 AM
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

Duncan Rounding
29-Jul-2006, 07:05 AM
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.

atco
29-Jul-2006, 07:16 AM
Your HTML code has a mistake in it:

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

should read: img src

:)

jont
29-Jul-2006, 08:57 AM
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

ART
29-Jul-2006, 10:05 AM
Thank you all for your prompt & incisive help - I have a lot to learn!

All the Best,

Allan