Page 1 of 1

URL links in Captions

PostPosted: Sun Feb 17, 2008 8:37 am
by jchambers
Hello, Does anyone know how I can make a link in a photo caption within a single word. i.e. looking at the link below, I would like the caption to have the URL just in the word "Alamy" so it doesn't have the whole URL visible.

http://www.pbase.com/image/76058670

Is this possible?

PostPosted: Sun Feb 17, 2008 8:47 am
by flemmingbo
yes, standard html (I shortened your link to make it easier to read):

Code: Select all
<a href="http://www.alamy.com/">Your text goes here, ie Alamy</a>


So all you do is paste your link at the href command and then write whatever text you want as link text. Don forget to close with the /a at the end.

regards,

Flemming

PostPosted: Sun Feb 17, 2008 9:21 am
by jchambers
Perfect, works a treat, thanks flemmingbo!