Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Displaying an image?

Quote Reply
Displaying an image?
I have added the abilty to upload an image into a link and this works fine...anyone now how to get the image displayed?



Thanks
Quote Reply
Re: [Mike_H] Displaying an image? In reply to
<%if Image%><%Image%><%endif%>


should work just fine. But make sure that you replace "image" with appropriate name as in your directory.

Vishal Thakkar

Vishal
-------------------------------------------------------
Quote Reply
Re: [TRPN] Displaying an image? In reply to
I tried the exact statement but nothing showed up.. I placed it in the links.html template.

Am I by any chance putting it in the wrong place?
Quote Reply
Re: [Mike_H] Displaying an image? In reply to
In Reply To:
I tried the exact statement but nothing showed up.. I placed it in the links.html template.

Am I by any chance putting it in the wrong place?

In <%if Image%> <%Image%> <%endif%> , Image is not the most important word. I just used Image, what you need to use it, what is shows in the Link Properties table (from mainadmin section). Make sure you have it right, not upper/lowercase mistakes.

Vishal
-------------------------------------------------------
Quote Reply
Re: [TRPN] Displaying an image? In reply to
In Reply To:
In <%if Image%> <%Image%> <%endif%> , Image is not the most important word. I just used Image, what you need to use it, what is shows in the Link Properties table (from mainadmin section). Make sure you have it right, not upper/lowercase mistakes.
Quote Reply
Re: [Mike_H] Displaying an image? In reply to
Hi,

Try this bit of code in your link.html template:

Code:
<%if Image%>
<img border="0" img src="<%db_cgi_url%>/jump.cgi?ID=<%ID%>&v=Image" align=right valign="top">
<%endif%>


You can change where you want your picture placed with the aligns.

Regards,
Chanelle
-- Gossamer Threads, Inc.

Last edited by:

chanelle: Jun 4, 2002, 5:01 PM
Quote Reply
Re: [chanelle] Displaying an image? In reply to