PDA

View Full Version : Adding Images


rubbadubbadoo
17-Feb-2006, 08:32 AM
Hi

I wish to add some images to these (http://www.rubbadubbadoo.co.uk/acatalog/shop.html) pages underneath the Items and Value box, could someone tell me what I need to edit please?

Many thanks
Alex

Mike Hughes
17-Feb-2006, 08:43 AM
Open act_primary.html and look for a bit that says:

<script language="JavaScript">
document.write("Items:&nbsp;" + getCartItem(3)+"&nbsp;<BR>");
document.write("Value:&nbsp;" + getCartItem(1));
</script>

add a few <br> tags after this to leave some space then add the images there. i.e.

<img source=imagename.gif alt="text for this image">
<br><br>

Adjust the number of <br> tags to space as you'd like.

Mike

jont
17-Feb-2006, 09:59 AM
<img source=imagename.gif alt="text for this image">

That should be:

<img src="imagename.gif" alt="text for this image">

if you also add title="text for this image" into the above the image text will also appear in Firefox, Netscape etc

rubbadubbadoo
20-Feb-2006, 10:37 AM
All sorted, many thanks!

Alex