Gossamer Forum
Home : Products : Links 2.0 : Customization :

Insert small image (60x60)

Quote Reply
Insert small image (60x60)
Hi,
I was just wondering if there was any mods made or in progrees in being made right now that will allow in add form put a link for a small thumbnail. And in listing it will appear beside the actual description/name..

ty


Quote Reply
Re: Insert small image (60x60) In reply to
This is not difficult to do:

1. Add a new field, say 'Thumbnail URL', to your links.def (and add the field in your links.db if on a working site). There's a FAQ in the resource center about adding new fields, and lots of discussion here in the forum ...

2. Add a new input field in your add.html template for the 'Thumbnail URL'. See how the other fields are done ...

3. Add something like
<%if Thumbnail URL%>
<img src="<%Thumbnail URL%>" height="60" width="60">
<%endif%>
to you link.html template.

I think this should do it ...