Topic: add link in comment

Hello everybody
I am new on this forum, i come from switzerland (french part), so please apologize my english which is not very good.

So, i would like to add a link to a html page, in the comment zone on one only of the pictures in the diashow.
Like the in this page: http://www.juicebox.net/demos/pro/full/#1
"Welcome to Juicebox-Pro"
How can i do this?

Thanks a lot,
best regards
alain haerri

Re: add link in comment

You can use <html> code within your captions to add an anchor <a> tag to create a link.
If using JuiceboxBuilder-Pro to create or edit your gallery, you can enter the code directly into a caption text field on the 'Images' tab, such as:

<a href="http://www.example.com/">Click here</a>

If editing your gallery's XML file manually in a plain text editor, you will need to enclose your caption within CDATA tags so it will look like this:

<caption><![CDATA[<a href="http://www.example.com/">Click here</a>]]></caption>

Re: add link in comment

Thank's a lot Steven
It works perfect
Alain

Re: add link in comment

Steven wrote:

You can use <html> code within your captions to add an anchor <a> tag to create a link.

<caption><![CDATA[<a href="http://www.example.com/">Click here</a>]]></caption>

I've got a caption to work as a link as shown above, but the color seems to default to white even though I've made other non-linked captions a specific color.
How can I change the linked caption color? Do I add it to the XML?

Re: add link in comment

@cprblak

Try something like:

<a href="http://www.example.com/" style="color: #ff0000">Click here</a>

Re: add link in comment

Steven wrote:

Try something like:

<a href="http://www.example.com/" style="color: #ff0000">Click here</a>

Worked like a charm! Thanks for the quick reply on this and other questions. Much appreciated.